gst/: -marshal.[ch] and -enum.[ch] files should not be disted, -marshal.h files shoul...
authorDavid Schleef <ds@schleef.org>
Fri, 27 Feb 2004 02:39:18 +0000 (02:39 +0000)
committerDavid Schleef <ds@schleef.org>
Fri, 27 Feb 2004 02:39:18 +0000 (02:39 +0000)
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.

ChangeLog
gst-libs/gst/colorbalance/Makefile.am
gst-libs/gst/mixer/Makefile.am
gst-libs/gst/tuner/Makefile.am

index 73ea4ecb57df7f6340ba7017c6923990f58ede97..5778d75e3101ce015707e7b8883b3d96be4fb068 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-02-26  David Schleef  <ds@schleef.org>
+
+       * 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.
+
 === release 0.7.5 ===
 
 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
index b55e318f63c4ee0ef6453c28f8e1938497b4d297..a410ad3233635362cf83062a3a602f189afbc192 100644 (file)
@@ -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)
 
index 79d40f9c48b87ef3202fbb4fd974a0e099aefae5..a77936c243a27bbdbcddcdcab94937c0824d1a5f 100644 (file)
@@ -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)
index ebfca95e978f5c5806faed78142b87ebbcb162a6..c5c4e5e49a94b0169202ca5251bb86516fa65bb4 100644 (file)
@@ -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)