Replace libuuid with internal implementation
[babeltrace.git] / src / plugins / ctf / common / metadata / Makefile.am
CommitLineData
989e97b6 1AM_CPPFLAGS += -I$(builddir) -I$(srcdir)
e98a2d6e
PP
2AM_YFLAGS = -t -d -v
3
4noinst_LTLIBRARIES = libctf-parser.la libctf-ast.la
5
8a121625
MJ
6BUILT_SOURCES = parser.h
7
06a626b8 8libctf_parser_la_SOURCES = lexer.l parser.y objstack.c
8a121625 9# scanner-symbols.h is included to prefix generated yy_* symbols
e98a2d6e 10# with bt_.
989e97b6 11libctf_parser_la_CPPFLAGS = $(AM_CPPFLAGS) \
06a626b8 12 -include $(srcdir)/scanner-symbols.h
33c81e6f 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 \
a248254b 25 decoder-packetized-file-stream-to-buf.c \
55314f2a
JG
26 decoder.h \
27 logging.c \
7b33a0e0
PP
28 logging.h \
29 ctf-meta.h \
30 ctf-meta-visitors.h \
31 ctf-meta-validate.c \
32 ctf-meta-update-meanings.c \
33 ctf-meta-update-in-ir.c \
34 ctf-meta-update-default-clock-classes.c \
35 ctf-meta-update-text-array-sequence.c \
36 ctf-meta-update-value-storing-indexes.c \
32476570 37 ctf-meta-update-stream-class-config.c \
0476f6f7 38 ctf-meta-warn-meaningless-header-fields.c \
7b33a0e0 39 ctf-meta-translate.c \
cd03c43c
PP
40 ctf-meta-resolve.c \
41 ctf-meta-configure-ir-trace.c \
42 ctf-meta-configure-ir-trace.h
4353f877 43
e98a2d6e 44if BABELTRACE_BUILD_WITH_MINGW
d126826c 45libctf_ast_la_LIBADD = -lintl -liconv -lole32 $(POPT_LIBS)
e98a2d6e
PP
46endif
47
8a121625
MJ
48# start with empty files to clean
49CLEANFILES =
50
51if HAVE_BISON
52# we have bison: we can clean the generated parser files
53CLEANFILES += parser.c parser.h parser.output
54else # HAVE_BISON
55# create target used to stop the build if we want to build the parser,
56# but we don't have the necessary tool to do so
57ERR_MSG = "Error: Cannot build target because bison is missing."
58ERR_MSG += "Make sure bison is installed and run the configure script again."
59
60parser.c parser.h: parser.y
61 @echo $(ERR_MSG)
62 @false
63
64all-local: parser.c parser.h
65endif # HAVE_BISON
66
67if HAVE_FLEX
68# we have flex: we can clean the generated lexer files
69CLEANFILES += lexer.c
70else # HAVE_FLEX
71# create target used to stop the build if we want to build the lexer,
72# but we don't have the necessary tool to do so
73ERR_MSG = "Error: Cannot build target because flex is missing."
74ERR_MSG += "Make sure flex is installed and run the configure script again."
75
76filter-lexer.c: lexer.l
5953a0b2
MD
77 @echo $(ERR_MSG)
78 @false
8a121625
MJ
79
80all-local: lexer.c
81endif # HAVE_FLEX
This page took 0.049463 seconds and 4 git commands to generate.