configure: re-enable '-Wmissing-field-initializers'
[babeltrace.git] / src / plugins / ctf / common / metadata / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: MIT
2
3AM_CPPFLAGS += -I$(builddir) -I$(srcdir)
4AM_YFLAGS = -t -d -v -Wno-yacc
5
6noinst_LTLIBRARIES = libctf-parser.la libctf-ast.la
7
8BUILT_SOURCES = parser.hpp
9
10libctf_parser_la_SOURCES = lexer.lpp parser.ypp objstack.cpp
11# scanner-symbols.h is included to prefix generated yy_* symbols
12# with bt_.
13libctf_parser_la_CPPFLAGS = $(AM_CPPFLAGS) \
14 -include $(srcdir)/scanner-symbols.hpp
15
16# This library contains (mostly) generated code, silence some warnings that it
17# produces.
18libctf_parser_la_CXXFLAGS = $(AM_CXXFLAGS) \
19 -Wno-unused-function \
20 -Wno-null-dereference \
21 -Wno-missing-field-initializers
22
23libctf_ast_la_SOURCES = \
24 visitor-generate-ir.cpp \
25 visitor-semantic-validator.cpp \
26 visitor-parent-links.cpp \
27 ast.hpp \
28 objstack.hpp \
29 parser.hpp \
30 parser-wrap.hpp \
31 scanner.hpp \
32 scanner-symbols.hpp \
33 decoder.cpp \
34 decoder.hpp \
35 decoder-packetized-file-stream-to-buf.cpp \
36 decoder-packetized-file-stream-to-buf.hpp \
37 logging.cpp \
38 logging.hpp \
39 ctf-meta.hpp \
40 ctf-meta-visitors.hpp \
41 ctf-meta-validate.cpp \
42 ctf-meta-update-meanings.cpp \
43 ctf-meta-update-in-ir.cpp \
44 ctf-meta-update-default-clock-classes.cpp \
45 ctf-meta-update-text-array-sequence.cpp \
46 ctf-meta-update-alignments.cpp \
47 ctf-meta-update-value-storing-indexes.cpp \
48 ctf-meta-update-stream-class-config.cpp \
49 ctf-meta-warn-meaningless-header-fields.cpp \
50 ctf-meta-translate.cpp \
51 ctf-meta-resolve.cpp \
52 ctf-meta-configure-ir-trace.cpp \
53 ctf-meta-configure-ir-trace.hpp
54
55if BABELTRACE_BUILD_WITH_MINGW
56libctf_ast_la_LIBADD = -lintl -liconv -lole32
57endif
58
59# start with empty files to clean
60CLEANFILES =
61
62if HAVE_BISON
63# we have bison: we can clean the generated parser files
64CLEANFILES += parser.cpp parser.hpp parser.output
65else # HAVE_BISON
66# create target used to stop the build if we want to build the parser,
67# but we don't have the necessary tool to do so
68ERR_MSG = "Error: Cannot build target because bison is missing."
69ERR_MSG += "Make sure bison is installed and run the configure script again."
70
71parser.cpp parser.hpp: parser.ypp
72 @echo $(ERR_MSG)
73 @false
74
75all-local: parser.cpp parser.hpp
76endif # HAVE_BISON
77
78if HAVE_FLEX
79# we have flex: we can clean the generated lexer files
80CLEANFILES += lexer.cpp
81else # HAVE_FLEX
82# create target used to stop the build if we want to build the lexer,
83# but we don't have the necessary tool to do so
84ERR_MSG = "Error: Cannot build target because flex is missing."
85ERR_MSG += "Make sure flex is installed and run the configure script again."
86
87filter-lexer.cpp: lexer.lpp
88 @echo $(ERR_MSG)
89 @false
90
91all-local: lexer.cpp
92endif # HAVE_FLEX
This page took 0.02298 seconds and 4 git commands to generate.