gstreamer/gst-libs/gst/mixer/Makefile.am
David Schleef 14db016878 gst/: -marshal.[ch] and -enum.[ch] files should not be disted, -marshal.h files should not be installed, and -enum.h ...
Original commit message from CVS:
* gst-libs/gst/colorbalance/Makefile.am:
* gst-libs/gst/mixer/Makefile.am:
* gst-libs/gst/tuner/Makefile.am:
* gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
should not be disted, -marshal.h files should not be installed,
and -enum.h files _should_ be installed.  Fix to make this the
case.
2004-02-27 02:39:18 +00:00

45 lines
814 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 \
mixertrack.h
built_sources = \
mixer-marshal.c \
mixer-enumtypes.c
built_headers = \
mixer-marshal.h \
mixer-enumtypes.h
libgstmixerinclude_HEADERS = \
$(mixer_headers) \
mixer-enumtypes.h
noinst_LTLIBRARIES = libgstmixer.la
libgstmixer_la_SOURCES = \
mixer.c \
mixertrack.c
nodist_libgstmixer_la_SOURCES = \
mixer-marshal.h \
$(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