parse: Don't dist the bison and flex generated headers
[platform/upstream/gstreamer.git] / gst / parse / Makefile.am
1 # libgstparse.la is an optionally built helper library linked into core
2 noinst_LTLIBRARIES = libgstparse.la
3
4 CLEANFILES = grammar.tab.h parse_lex.h grammar.output
5 EXTRA_DIST = \
6         grammar.y \
7         parse.l
8
9 # uncomment these lines to dist the generated sources
10 #BUILT_SOURCES = grammar.tab.h grammar.tab.c parse_lex.h lex.priv_gst_parse_yy.c
11 #libgstparse_la_SOURCES = lex.priv_gst_parse_yy.c grammar.tab.c
12
13 # uncomment these lines to _NOT_ dist the generated sources
14 nodist_libgstparse_la_SOURCES = lex.priv_gst_parse_yy.c grammar.tab.c grammar.tag.h parse_lex.h
15 CLEANFILES += grammar.tab.c lex.priv_gst_parse_yy.c
16
17 libgstparse_la_CFLAGS = $(GST_ALL_CFLAGS) -DYYMALLOC=g_malloc -DYYFREE=g_free
18 libgstparse_la_LIBADD = $(GST_ALL_LIBS)
19
20 noinst_HEADERS = types.h
21
22 Android.mk: Makefile.am
23         androgenizer -:PROJECT gstreamer -:STATIC libgstparse -:TAGS eng debug \
24          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
25          -:SOURCES $(libgstparse_la_SOURCES) $(nodist_libgstparse_la_SOURCES) \
26          -:CFLAGS $(DEFS) $(libgstparse_la_CFLAGS) \
27          -:LDFLAGS $(libgstparse_la_LIBADD) \
28         > $@
29
30 grammar.tab.c grammar.tab.h: grammar.y
31         $(AM_V_GEN)$(BISON_PATH) -d -v -ppriv_gst_parse_yy $(srcdir)/grammar.y -o grammar.tab.c && \
32         mv grammar.tab.c grammar.tab_tmp.c && \
33         echo '#ifdef HAVE_CONFIG_H' > grammar.tab_tmp2.c && \
34         echo '#include <config.h>' >> grammar.tab_tmp2.c && \
35         echo '#endif' >> grammar.tab_tmp2.c && \
36         cat grammar.tab_tmp.c >> grammar.tab_tmp2.c && \
37         rm grammar.tab_tmp.c && \
38         mv grammar.tab_tmp2.c grammar.tab.c
39
40 lex.priv_gst_parse_yy.c parse_lex.h: parse.l grammar.tab.h
41         $(AM_V_GEN)$(FLEX_PATH) --header-file=parse_lex.h -Ppriv_gst_parse_yy $^ && \
42         mv lex.priv_gst_parse_yy.c lex.priv_gst_parse_yy_tmp.c && \
43         echo '#ifdef HAVE_CONFIG_H' > lex.priv_gst_parse_yy_tmp2.c && \
44         echo '#include <config.h>' >> lex.priv_gst_parse_yy_tmp2.c && \
45         echo '#endif' >> lex.priv_gst_parse_yy_tmp2.c && \
46         { grep -q priv_gst_parse_yyget_column parse_lex.h || \
47         { echo 'int priv_gst_parse_yyget_column  (void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c && \
48         echo 'void priv_gst_parse_yyset_column (int column_no , void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c; }; } && \
49         cat lex.priv_gst_parse_yy_tmp.c >> lex.priv_gst_parse_yy_tmp2.c && \
50         rm lex.priv_gst_parse_yy_tmp.c && \
51         mv lex.priv_gst_parse_yy_tmp2.c lex.priv_gst_parse_yy.c
52
53 .NOTPARALLEL:
54