mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
3a41065234
Original commit message from CVS: distcheck fixes
23 lines
439 B
Makefile
23 lines
439 B
Makefile
noinst_LTLIBRARIES = libgstparse.la
|
|
|
|
libgstparse_la_SOURCES = lex.yy.c grammar.tab.c
|
|
|
|
BISON = bison -d -v
|
|
|
|
libgstparse_la_CFLAGS = $(LIBGST_CFLAGS)
|
|
libgstparse_la_LIBADD = $(LIBGST_LIBS)
|
|
|
|
noinst_HEADERS = grammar.tab.h
|
|
|
|
BUILT_SOURCES = grammar.tab.h grammar.tab.c lex.yy.c
|
|
|
|
EXTRA_DIST = grammar.y parse.l types.h
|
|
|
|
grammar.tab.h: grammar.y
|
|
$(BISON) grammar.y
|
|
|
|
grammar.tab.c: grammar.y
|
|
$(BISON) grammar.y
|
|
|
|
lex.yy.c: parse.l
|
|
flex parse.l
|