gstreamer/gst/parse/Makefile.am
David Schleef 1e17763c6e Add -p and -P flags to bison and flex, to prefix yy* symbols with _gst_parse_yy. This fixes symbol conflict with oth...
Original commit message from CVS:
Add -p and -P flags to bison and flex, to prefix yy* symbols with
_gst_parse_yy.  This fixes symbol conflict with other libs.
(Should go into 0.4.1.)
2002-09-18 23:23:41 +00:00

21 lines
462 B
Makefile

noinst_LTLIBRARIES = libgstparse.la
libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c
BISON = bison -d -v -p_gst_parse__yy
libgstparse_la_CFLAGS = $(LIBGST_CFLAGS)
libgstparse_la_LIBADD = $(LIBGST_LIBS)
noinst_HEADERS = grammar.tab.h
BUILT_SOURCES = grammar.tab.h grammar.tab.c lex._gst_parse_yy.c
EXTRA_DIST = grammar.y parse.l types.h
grammar.tab.c grammar.tab.h: grammar.y
$(BISON) $^
lex._gst_parse_yy.c: parse.l
flex -P_gst_parse_yy $^