gstreamer/gst-libs/gst/mixer/Makefile.am
Benjamin Otte 814688a52b don't include -enumtypes.[ch] or -marshal.[ch] files in the disted tarball.
Original commit message from CVS:
* gst-libs/gst/colorbalance/Makefile.am:
* gst-libs/gst/mixer/Makefile.am:
* gst-libs/gst/play/Makefile.am:
* gst-libs/gst/tuner/Makefile.am:
* gst/tcp/Makefile.am:
* sys/dxr3/Makefile.am:
don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
tarball.
Also add all *.list files that were missing.
* Makefile.am:
add a distcheck hook to ensure the above doesn't happen again.
2004-06-24 01:43:54 +00:00

50 lines
910 B
Makefile

# variables used for enum/marshal generation
glib_enum_headers=$(mixer_headers)
glib_enum_define=GST_MIXER
glib_enum_prefix=gst_mixer
libgstmixerincludedir = \
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/mixer
mixer_headers = \
mixer.h \
mixeroptions.h \
mixertrack.h
built_sources = \
mixer-marshal.c \
mixer-enumtypes.c
built_headers = \
mixer-marshal.h \
mixer-enumtypes.h
libgstmixerinclude_HEADERS = \
$(mixer_headers)
# FIXME 0.9: don't include marshal files
nodist_libgstmixerinclude_HEADERS = \
$(built_headers)
noinst_LTLIBRARIES = libgstmixer.la
libgstmixer_la_SOURCES = \
mixer.c \
mixeroptions.c \
mixertrack.c
nodist_libgstmixer_la_SOURCES = \
$(built_sources)
libgstmixer_la_CFLAGS = $(GST_CFLAGS)
BUILT_SOURCES = \
$(built_sources) \
$(built_headers)
EXTRA_DIST = mixer-marshal.list
CLEANFILES = $(BUILT_SOURCES)
include $(top_srcdir)/common/glib-gen.mak