mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
1e17763c6e
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.)
20 lines
462 B
Makefile
20 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 $^
|