diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-03 20:20:07 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-03 20:20:07 +0000 |
commit | 47be812c27b5d8ecc37a1a89eec18a1e33dc9320 (patch) | |
tree | e4e017a021025a1bdf95d67abca2b8913fe6f5b7 /gst-libs/gst/colorbalance | |
parent | 4c0511c1dfe5915c3d2395fd754ad13c6a278f49 (diff) | |
download | gst-plugins-bad-47be812c27b5d8ecc37a1a89eec18a1e33dc9320.tar.gz gst-plugins-bad-47be812c27b5d8ecc37a1a89eec18a1e33dc9320.tar.bz2 gst-plugins-bad-47be812c27b5d8ecc37a1a89eec18a1e33dc9320.zip |
remove glib_root add hack rule for .Plo files
Original commit message from CVS:
remove glib_root
add hack rule for .Plo files
Diffstat (limited to 'gst-libs/gst/colorbalance')
-rw-r--r-- | gst-libs/gst/colorbalance/Makefile.am | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gst-libs/gst/colorbalance/Makefile.am b/gst-libs/gst/colorbalance/Makefile.am index 2571f44b..fbd050d0 100644 --- a/gst-libs/gst/colorbalance/Makefile.am +++ b/gst-libs/gst/colorbalance/Makefile.am @@ -1,7 +1,6 @@ # variables used for enum/marshal generation glib_enum_headers=$(colorbalance_headers) glib_enum_define=GST_COLOR_BALANCE -glib_root=colorbalance glib_enum_prefix=gst_color_balance libgstcolorbalanceincludedir = \ @@ -11,9 +10,13 @@ colorbalance_headers = \ colorbalance.h \ colorbalancechannel.h +built_sources = \ + colorbalance-marshal.c \ + colorbalance-enumtypes.c + built_headers = \ - $(glib_root)-marshal.h \ - $(glib_root)-enumtypes.h + colorbalance-marshal.h \ + colorbalance-enumtypes.h libgstcolorbalanceinclude_HEADERS = $(colorbalance_headers) $(built_headers) @@ -22,16 +25,15 @@ noinst_LTLIBRARIES = libgstcolorbalance.la libgstcolorbalance_la_SOURCES = \ colorbalance.c \ colorbalancechannel.c \ - $(glib_root)-marshal.c \ - $(glib_root)-enumtypes.c + $(built_sources) + libgstcolorbalance_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS) BUILT_SOURCES = \ - $(glib_root)-marshal.c \ - $(glib_root)-enumtypes.c \ + $(built_sources) \ $(built_headers) -EXTRA_DIST = $(glib_root)-marshal.list +EXTRA_DIST = colorbalance-marshal.list CLEANFILES = $(BUILT_SOURCES) |