mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7f033e4c9c
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.
43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstlevel.la
|
|
|
|
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)
|
|
|
|
noinst_HEADERS = gstlevel.h filter.func
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo plot
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
demo_LDFLAGS = $(GTK_LIBS) $(GST_LIBS)
|
|
plot_SOURCES = plot.c
|
|
plot_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
plot_LDFLAGS = $(GTK_LIBS) $(GST_LIBS)
|
|
endif
|
|
|
|
EXTRA_libgstlevel_la_SOURCES = gstlevel-marshal.list
|
|
|
|
BUILT_SOURCES = \
|
|
gstlevel-marshal.c \
|
|
gstlevel-marshal.h
|
|
CLEANFILES = \
|
|
gstlevel-marshal.c \
|
|
gstlevel-marshal.h
|
|
|
|
|
|
gstlevel-marshal.h: gstlevel-marshal.list
|
|
glib-genmarshal --header --prefix=gstlevel_cclosure_marshal $(srcdir)/gstlevel-marshal.list > gstlevel-marshal.h.tmp
|
|
mv gstlevel-marshal.h.tmp gstlevel-marshal.h
|
|
|
|
gstlevel-marshal.c: gstlevel-marshal.list
|
|
echo "#include \"glib.h\"" > gstlevel-marshal.c.tmp
|
|
echo "#include \"glib-object.h\"" >> gstlevel-marshal.c.tmp
|
|
echo "#include \"gstlevel-marshal.h\"" >> gstlevel-marshal.c.tmp
|
|
glib-genmarshal --body --prefix=gstlevel_cclosure_marshal $(srcdir)/gstlevel-marshal.list >> gstlevel-marshal.c.tmp
|
|
mv gstlevel-marshal.c.tmp gstlevel-marshal.c
|
|
|
|
EXTRA_DIST = README
|