mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
- clean bison- and flex-built files on make clean. (fixes #101421)
Original commit message from CVS: - clean bison- and flex-built files on make clean. (fixes #101421) - use CFLAGS that enable debugging symbols.
This commit is contained in:
parent
a03e803bb6
commit
ff856af64a
1 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,7 @@ 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_CFLAGS = $(GST_CFLAGS)
|
||||
libgstparse_la_LIBADD = $(LIBGST_LIBS)
|
||||
|
||||
noinst_HEADERS = grammar.tab.h
|
||||
|
@ -23,3 +23,9 @@ grammar.tab.c grammar.tab.h: grammar.y ../gstmarshal.h
|
|||
|
||||
lex._gst_parse_yy.c: parse.l
|
||||
flex -P_gst_parse_yy $^
|
||||
|
||||
dist-hook:
|
||||
rm -f $(BUILT_SOURCES)
|
||||
|
||||
clean-local:
|
||||
rm -f $(BUILT_SOURCES)
|
||||
|
|
Loading…
Reference in a new issue