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 | 7f033e4c9c09930118eaed680d302e77e2725b6f (patch) | |
tree | d3f448e2a83600c23641243e257d18a500feec6a /gst | |
parent | 087eda9bd65e98edefafa5d0083c40e8a966adf8 (diff) |
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')
-rw-r--r-- | gst/level/Makefile.am | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gst/level/Makefile.am b/gst/level/Makefile.am index 21f90990..6413c32c 100644 --- a/gst/level/Makefile.am +++ b/gst/level/Makefile.am @@ -1,7 +1,8 @@ plugin_LTLIBRARIES = libgstlevel.la -libgstlevel_la_SOURCES = gstlevel.c gstlevel-marshal.c +libgstlevel_la_SOURCES = gstlevel.c +nodist_libgstlevel_la_SOURCES = gstlevel-marshal.c gstlevel-marshal.h libgstlevel_la_CFLAGS = $(GST_CFLAGS) libgstlevel_la_LIBADD = libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) @@ -39,9 +40,4 @@ gstlevel-marshal.c: gstlevel-marshal.list glib-genmarshal --body --prefix=gstlevel_cclosure_marshal $(srcdir)/gstlevel-marshal.list >> gstlevel-marshal.c.tmp mv gstlevel-marshal.c.tmp gstlevel-marshal.c -# Don't want the generated marshal files in the dist -dist-hook: - rm -f $(distdir)/gstlevel-marshal.c - rm -f $(distdir)/gstlevel-marshal.h - EXTRA_DIST = README |