gstreamer/gst/parse/Makefile.am
Thomas Vander Stichele f1687832be going for a release final fixes libtool age 2->3 because of connect->link
Original commit message from CVS:
going for a release
final fixes
libtool age 2->3 because of connect->link
2003-01-22 16:14:16 +00:00

27 lines
693 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
## FIXME: find a way to add ../gstmarshal.h to the grammar.tab.c requires
grammar.tab.c grammar.tab.h: grammar.y
$(BISON) $<
## this is so make install without a previous make can work, because
## this dir needs gstmarshal.h generated
../gstmarshal.h:
cd .. && make gstmarshal.h
lex._gst_parse_yy.c: parse.l
flex -P_gst_parse_yy $^