mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
be3ea15a2d
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.
45 lines
814 B
Makefile
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
|