2002-07-01 15:41:13 +00:00
|
|
|
if USE_GCONFTOOL
|
2002-05-10 21:56:15 +00:00
|
|
|
GCONF_DIR=gconf
|
|
|
|
else
|
|
|
|
GCONF_DIR=
|
|
|
|
endif
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
if BUILD_EXTERNAL
|
|
|
|
EXT_DIR=ext
|
|
|
|
else
|
|
|
|
EXT_DIR=
|
|
|
|
endif
|
|
|
|
|
2002-12-05 00:25:13 +00:00
|
|
|
if BUILD_EXAMPLES
|
|
|
|
EXAMPLES_DIR=examples
|
|
|
|
else
|
|
|
|
EXAMPLES_DIR=
|
|
|
|
endif
|
|
|
|
|
2003-04-07 21:34:30 +00:00
|
|
|
SUBDIRS=gst-libs \
|
|
|
|
gst sys $(EXT_DIR) \
|
|
|
|
$(EXAMPLES_DIR) \
|
|
|
|
tools \
|
|
|
|
$(GCONF_DIR) \
|
|
|
|
testsuite \
|
2004-01-19 15:45:55 +00:00
|
|
|
po \
|
2004-03-18 12:38:53 +00:00
|
|
|
common \
|
|
|
|
m4 \
|
2003-04-07 21:34:30 +00:00
|
|
|
pkgconfig
|
|
|
|
|
2004-01-21 06:57:30 +00:00
|
|
|
DIST_SUBDIRS=ext gst-libs \
|
|
|
|
gst sys \
|
2003-04-07 21:34:30 +00:00
|
|
|
examples \
|
|
|
|
tools \
|
|
|
|
gconf \
|
|
|
|
testsuite \
|
2004-01-19 15:45:55 +00:00
|
|
|
po \
|
2004-03-18 12:38:53 +00:00
|
|
|
common \
|
|
|
|
m4 \
|
2003-04-07 21:34:30 +00:00
|
|
|
pkgconfig
|
|
|
|
|
|
|
|
EXTRA_DIST=gst-plugins.spec depcomp \
|
2004-03-13 14:07:54 +00:00
|
|
|
AUTHORS COPYING COPYING.LIB NEWS README RELEASE REQUIREMENTS \
|
2004-03-18 12:38:53 +00:00
|
|
|
ChangeLog autogen.sh
|
2002-08-09 20:56:56 +00:00
|
|
|
|
2004-02-03 02:40:15 +00:00
|
|
|
DISTCLEANFILES=_stdint.h
|
|
|
|
|
2004-06-24 01:43:55 +00:00
|
|
|
# check that no marshal or enumtypes files are included
|
|
|
|
# this in turn ensures that distcheck fails for missing .list files which is currently
|
|
|
|
# shadowed when the corresponding .c and .h files are included.
|
|
|
|
distcheck-hook:
|
2004-07-02 10:02:13 +00:00
|
|
|
@test "x" = "x`find $(distdir) -name \*-enumtypes.[ch]`" && \
|
2004-06-24 01:43:55 +00:00
|
|
|
test "x" = "x`find $(distdir) -name \*-marshal.[ch]`" || \
|
2004-07-02 10:02:13 +00:00
|
|
|
( $(ECHO) "*** Leftover enumtypes or marshal files in the tarball." && \
|
|
|
|
$(ECHO) "*** Make sure the following files are not disted:" && \
|
|
|
|
find $(distdir) -name \*-enumtypes.[ch] && \
|
|
|
|
find $(distdir) -name \*-marshal.[ch] && \
|
|
|
|
false )
|
2004-06-24 01:43:55 +00:00
|
|
|
|
2004-03-17 10:59:35 +00:00
|
|
|
include $(top_srcdir)/common/release.mak
|
2004-05-03 13:37:09 +00:00
|
|
|
include $(top_srcdir)/common/po.mak
|