libs: fix 'inconsistent DLL linkage' warnings on Windows
[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) -DBUILDING_GST -DYYMALLOC=g_malloc -DYYFREE=g_free
18 libgstparse_la_LIBADD = $(GST_ALL_LIBS)
19
20 noinst_HEADERS = types.h
21
22 grammar.tab.c grammar.tab.h: grammar.y
23         $(AM_V_GEN)$(BISON_PATH) -d -v -ppriv_gst_parse_yy $(srcdir)/grammar.y -o grammar.tab.c && \
24         mv grammar.tab.c grammar.tab_tmp.c && \
25         echo '#ifdef HAVE_CONFIG_H' > grammar.tab_tmp2.c && \
26         echo '#include <config.h>' >> grammar.tab_tmp2.c && \
27         echo '#endif' >> grammar.tab_tmp2.c && \
28         cat grammar.tab_tmp.c >> grammar.tab_tmp2.c && \
29         rm grammar.tab_tmp.c && \
30         mv grammar.tab_tmp2.c grammar.tab.c
31
32 lex.priv_gst_parse_yy.c parse_lex.h: parse.l grammar.tab.h
33         $(AM_V_GEN)$(FLEX_PATH) --header-file=parse_lex.h -Ppriv_gst_parse_yy $^ && \
34         mv lex.priv_gst_parse_yy.c lex.priv_gst_parse_yy_tmp.c && \
35         echo '#ifdef HAVE_CONFIG_H' > lex.priv_gst_parse_yy_tmp2.c && \
36         echo '#include <config.h>' >> lex.priv_gst_parse_yy_tmp2.c && \
37         echo '#endif' >> lex.priv_gst_parse_yy_tmp2.c && \
38         { grep -q priv_gst_parse_yyget_column parse_lex.h || \
39         { echo 'int priv_gst_parse_yyget_column  (void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c && \
40         echo 'void priv_gst_parse_yyset_column (int column_no , void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c; }; } && \
41         cat lex.priv_gst_parse_yy_tmp.c >> lex.priv_gst_parse_yy_tmp2.c && \
42         rm lex.priv_gst_parse_yy_tmp.c && \
43         mv lex.priv_gst_parse_yy_tmp2.c lex.priv_gst_parse_yy.c
44
45 .NOTPARALLEL:
46