diff options
author | David Schleef <ds@schleef.org> | 2004-02-27 02:39:18 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-02-27 02:39:18 +0000 |
commit | be3ea15a2d25a5232a2b349d4a8e7091e5781b08 (patch) | |
tree | c13e66ed154e057cbd6975aab91f7167989450e0 /gst-libs | |
parent | 7c55ebff04d3a84d4403b9d661b4feca03197e1d (diff) | |
download | gstreamer-plugins-bad-be3ea15a2d25a5232a2b349d4a8e7091e5781b08.tar.gz |
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.
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/colorbalance/Makefile.am | 9 | ||||
-rw-r--r-- | gst-libs/gst/mixer/Makefile.am | 8 | ||||
-rw-r--r-- | gst-libs/gst/tuner/Makefile.am | 10 |
3 files changed, 19 insertions, 8 deletions
diff --git a/gst-libs/gst/colorbalance/Makefile.am b/gst-libs/gst/colorbalance/Makefile.am index b55e318f6..a410ad323 100644 --- a/gst-libs/gst/colorbalance/Makefile.am +++ b/gst-libs/gst/colorbalance/Makefile.am @@ -18,14 +18,17 @@ built_headers = \ colorbalance-marshal.h \ colorbalance-enumtypes.h -libgstcolorbalanceinclude_HEADERS = $(colorbalance_headers) $(built_headers) +libgstcolorbalanceinclude_HEADERS = $(colorbalance_headers) \ + colorbalance-enumtypes.h noinst_LTLIBRARIES = libgstcolorbalance.la libgstcolorbalance_la_SOURCES = \ colorbalance.c \ - colorbalancechannel.c \ - $(built_sources) + colorbalancechannel.c +nodist_libgstcolorbalance_la_SOURCES = \ + $(built_sources) \ + colorbalance-marshal.h libgstcolorbalance_la_CFLAGS = $(GST_CFLAGS) diff --git a/gst-libs/gst/mixer/Makefile.am b/gst-libs/gst/mixer/Makefile.am index 79d40f9c4..a77936c24 100644 --- a/gst-libs/gst/mixer/Makefile.am +++ b/gst-libs/gst/mixer/Makefile.am @@ -19,13 +19,17 @@ built_headers = \ mixer-marshal.h \ mixer-enumtypes.h -libgstmixerinclude_HEADERS = $(mixer_headers) $(built_headers) +libgstmixerinclude_HEADERS = \ + $(mixer_headers) \ + mixer-enumtypes.h noinst_LTLIBRARIES = libgstmixer.la libgstmixer_la_SOURCES = \ mixer.c \ - mixertrack.c \ + mixertrack.c +nodist_libgstmixer_la_SOURCES = \ + mixer-marshal.h \ $(built_sources) libgstmixer_la_CFLAGS = $(GST_CFLAGS) diff --git a/gst-libs/gst/tuner/Makefile.am b/gst-libs/gst/tuner/Makefile.am index ebfca95e9..c5c4e5e49 100644 --- a/gst-libs/gst/tuner/Makefile.am +++ b/gst-libs/gst/tuner/Makefile.am @@ -19,15 +19,19 @@ built_headers = \ tuner-marshal.h \ tuner-enumtypes.h -libgsttunerinclude_HEADERS = $(tuner_headers) $(built_headers) +libgsttunerinclude_HEADERS = \ + $(tuner_headers) \ + tuner-enumtypes.h noinst_LTLIBRARIES = libgsttuner.la libgsttuner_la_SOURCES = \ tuner.c \ tunernorm.c \ - tunerchannel.c \ - $(built_sources) + tunerchannel.c +nodist_libgsttuner_la_SOURCES = \ + $(built_sources) \ + tuner-marshal.h libgsttuner_la_CFLAGS = $(GST_CFLAGS) |