tap-driver.sh: flush stdout after each test result
[babeltrace.git] / plugins / ctf / common / metadata / Makefile.am
CommitLineData
05c03100 1AM_CPPFLAGS += -I$(builddir) -I$(srcdir)
e98a2d6e
PP
2AM_YFLAGS = -t -d -v
3
4noinst_LTLIBRARIES = libctf-parser.la libctf-ast.la
5
540d833d
MJ
6BUILT_SOURCES = parser.h
7
06a626b8 8libctf_parser_la_SOURCES = lexer.l parser.y objstack.c
540d833d 9# scanner-symbols.h is included to prefix generated yy_* symbols
e98a2d6e 10# with bt_.
05c03100 11libctf_parser_la_CPPFLAGS = $(AM_CPPFLAGS) \
06a626b8 12 -include $(srcdir)/scanner-symbols.h
f73367f8 13libctf_parser_la_CFLAGS = $(AM_CFLAGS) -Wno-unused-function
e98a2d6e 14
e98a2d6e 15libctf_ast_la_SOURCES = \
06a626b8
JG
16 visitor-generate-ir.c \
17 visitor-semantic-validator.c \
4353f877
PP
18 visitor-parent-links.c \
19 ast.h \
20 objstack.h \
21 parser.h \
22 scanner.h \
1e649dff
PP
23 scanner-symbols.h \
24 decoder.c \
55314f2a
JG
25 decoder.h \
26 logging.c \
44c440bc
PP
27 logging.h \
28 ctf-meta.h \
29 ctf-meta-visitors.h \
30 ctf-meta-validate.c \
31 ctf-meta-update-meanings.c \
32 ctf-meta-update-in-ir.c \
33 ctf-meta-update-default-clock-classes.c \
34 ctf-meta-update-text-array-sequence.c \
35 ctf-meta-update-value-storing-indexes.c \
afd45274 36 ctf-meta-update-stream-class-config.c \
83ebb7f1 37 ctf-meta-warn-meaningless-header-fields.c \
44c440bc
PP
38 ctf-meta-translate.c \
39 ctf-meta-resolve.c
4353f877 40
60725cf9 41libctf_ast_la_LIBADD = $(UUID_LIBS)
e98a2d6e
PP
42
43if BABELTRACE_BUILD_WITH_MINGW
4817cd5b 44libctf_ast_la_LIBADD += -lrpcrt4 -lintl -liconv -lole32 $(POPT_LIBS)
e98a2d6e
PP
45endif
46
540d833d
MJ
47# start with empty files to clean
48CLEANFILES =
49
50if HAVE_BISON
51# we have bison: we can clean the generated parser files
52CLEANFILES += parser.c parser.h parser.output
53else # HAVE_BISON
54# create target used to stop the build if we want to build the parser,
55# but we don't have the necessary tool to do so
56ERR_MSG = "Error: Cannot build target because bison is missing."
57ERR_MSG += "Make sure bison is installed and run the configure script again."
58
59parser.c parser.h: parser.y
60 @echo $(ERR_MSG)
61 @false
62
63all-local: parser.c parser.h
64endif # HAVE_BISON
65
66if HAVE_FLEX
67# we have flex: we can clean the generated lexer files
68CLEANFILES += lexer.c
69else # HAVE_FLEX
70# create target used to stop the build if we want to build the lexer,
71# but we don't have the necessary tool to do so
72ERR_MSG = "Error: Cannot build target because flex is missing."
73ERR_MSG += "Make sure flex is installed and run the configure script again."
74
75filter-lexer.c: lexer.l
2cb42eae
MD
76 @echo $(ERR_MSG)
77 @false
540d833d
MJ
78
79all-local: lexer.c
80endif # HAVE_FLEX
This page took 0.044244 seconds and 4 git commands to generate.