1 DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
11 gst sys $(SUBDIRS_EXT) \
31 win32 = $(shell cat $(top_srcdir)/win32/MANIFEST)
34 gst-plugins-base.spec depcomp \
35 AUTHORS COPYING COPYING.LIB NEWS README RELEASE REQUIREMENTS \
36 ChangeLog gst-plugins-base.doap autogen.sh $(win32)
38 DISTCLEANFILES = _stdint.h
40 ACLOCAL_AMFLAGS = -I m4 -I common/m4
42 include $(top_srcdir)/common/release.mak
43 include $(top_srcdir)/common/po.mak
46 cd tests/check && make check-valgrind
50 cd tests/check && make torture
57 $(top_builddir)/gst-libs/gst/*/*-enumtypes.[ch] \
58 $(top_builddir)/_stdint.h
61 for f in $(WIN32_COPY); do cp $$f win32/common;done
63 include $(top_srcdir)/common/coverage/lcov.mak
65 # make sure all symbols we export on linux are defined in the win32 .def too
66 # (don't care about other unixes for now, it's enough if it works on one of
67 # the linux build bots; we assume .so )
68 baselibs='libgstaudio libgstrtp libgstpbutils libgsttag libgstnetbuffer \
69 libgstinterfaces libgstvideo libgstriff libgstrtsp libgstcdda'
71 for l in `eval echo $(baselibs)`; do \
72 libso=`find "$(top_builddir)" -name "$$l-0.10.so"`; \
73 libdef="$(top_srcdir)/win32/common/$$l.def"; \
74 if test "x$$libso" != "x"; then \
75 echo Checking symbols in $$libso; \
76 $(top_srcdir)/common/check-exports $$libdef $$libso || exit 1; \