mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
4749c7a4f1
Original commit message from CVS: 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de> * gst/parse/Makefile.am: * gst/gstobject.h: get rid of gstmarshal.h dependency. It's not needed. * gst/gst.h: * gst/elements/gstfakesink.c: * gst/elements/gstfakesrc.c: * gst/elements/gstidentity.c: * gst/gstbin.c: * gst/gstelement.c: * gst/gstindex.c: * gst/gstobject.c: * gst/gstpad.c: * gst/gstthread.c: * gst/gstxml.c: * libs/gst/control/dparam.c: * libs/gst/control/dparammanager.c: include gstmarshal.h. Fixes #132045
27 lines
817 B
Makefile
27 lines
817 B
Makefile
|
|
noinst_LTLIBRARIES = libgstparse.la
|
|
|
|
|
|
CLEANFILES = grammar.tab.h grammar.output
|
|
EXTRA_DIST = grammar.y parse.l types.h
|
|
|
|
# uncomment these lines to dist the generated sources
|
|
#BUILT_SOURCES = grammar.tab.h grammar.tab.c lex._gst_parse_yy.c
|
|
#libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c
|
|
|
|
# uncomment these lines to _NOT_ dist the generated sources
|
|
nodist_libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c
|
|
CLEANFILES += grammar.tab.c lex._gst_parse_yy.c
|
|
|
|
libgstparse_la_CFLAGS = $(GST_CFLAGS) $(DISABLE_FLEX_WARNING)
|
|
libgstparse_la_LIBADD = $(LIBGST_LIBS)
|
|
|
|
noinst_HEADERS = grammar.tab.h
|
|
|
|
grammar.tab.c grammar.tab.h: grammar.y
|
|
$(BISON_PATH) -d -v -p_gst_parse__yy $(srcdir)/grammar.y -o grammar.tab.c
|
|
|
|
parse.l : grammar.tab.h
|
|
|
|
lex._gst_parse_yy.c: parse.l
|
|
$(FLEX_PATH) -P_gst_parse_yy $^
|