mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
075b9aed73
Original commit message from CVS: fixing nonsrcdir builds
20 lines
396 B
Makefile
20 lines
396 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.c grammar.tab.h: grammar.y
|
|
$(BISON) $^
|
|
|
|
lex.yy.c: parse.l
|
|
flex $^
|