mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
814688a52b
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.
50 lines
905 B
Makefile
50 lines
905 B
Makefile
# variables used for enum/marshal generation
|
|
glib_enum_headers=$(tuner_headers)
|
|
glib_enum_define=GST_TUNER
|
|
glib_enum_prefix=gst_tuner
|
|
|
|
libgsttunerincludedir = \
|
|
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/tuner
|
|
|
|
tuner_headers = \
|
|
tuner.h \
|
|
tunernorm.h \
|
|
tunerchannel.h
|
|
|
|
built_sources = \
|
|
tuner-marshal.c \
|
|
tuner-enumtypes.c
|
|
|
|
built_headers = \
|
|
tuner-marshal.h \
|
|
tuner-enumtypes.h
|
|
|
|
libgsttunerinclude_HEADERS = \
|
|
$(tuner_headers)
|
|
|
|
# FIXME 0.9: don't install
|
|
nodist_libgsttunerinclude_HEADERS = \
|
|
tuner-enumtypes.h
|
|
|
|
noinst_LTLIBRARIES = libgsttuner.la
|
|
|
|
libgsttuner_la_SOURCES = \
|
|
tuner.c \
|
|
tunernorm.c \
|
|
tunerchannel.c
|
|
|
|
nodist_libgsttuner_la_SOURCES = \
|
|
$(built_sources) \
|
|
tuner-marshal.h
|
|
|
|
libgsttuner_la_CFLAGS = $(GST_CFLAGS)
|
|
|
|
BUILT_SOURCES = \
|
|
$(built_sources) \
|
|
$(built_headers)
|
|
|
|
EXTRA_DIST = tuner-marshal.list
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|