mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
66107d8717
Original commit message from CVS: * form a semantic representation of the pipeline in preparation for actual instantiation. the parser is shaping up quite nicely; it should, in theory, be able to create all types of pipelines that gstreamer supports
24 lines
445 B
Makefile
24 lines
445 B
Makefile
#noinst_LTLIBRARIES = libgstparse.la
|
|
|
|
#libgstparse_la_SOURCES = parse.c grammar.c
|
|
|
|
BISON = bison -d -v
|
|
|
|
noinst_PROGRAMS = grammar
|
|
|
|
grammar_SOURCES = lex.yy.c grammar.tab.c
|
|
grammar_CFLAGS = $(GLIB_CFLAGS)
|
|
grammar_LDADD = $(GLIB_LIBS)
|
|
|
|
noinst_HEADERS = grammar.tab.h
|
|
|
|
BUILT_SOURCES = grammar.tab.h grammar.tab.c lex.yy.c
|
|
|
|
grammar.tab.h: grammar.y
|
|
$(BISON) grammar.y
|
|
|
|
grammar.tab.c: grammar.y
|
|
$(BISON) grammar.y
|
|
|
|
lex.yy.c: parse.l
|
|
flex parse.l
|