Build fix: implicit declaration of function 'PERROR' on Solaris
[lttng-tools.git] / src / common / filter / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227 3AM_CPPFLAGS += -I$(srcdir) -I$(builddir)
74130cb7 4
d00c599e
DG
5noinst_PROGRAMS = filter-grammar-test
6noinst_LTLIBRARIES = libfilter.la
c6228685
MD
7noinst_HEADERS = filter-ast.h \
8 filter-symbols.h
d00c599e
DG
9
10BUILT_SOURCES = filter-parser.h
d00c599e 11
11138250
PP
12libfilter_la_SOURCES = \
13 filter-parser.y filter-lexer.l \
d00c599e
DG
14 filter-visitor-xml.c \
15 filter-visitor-generate-ir.c \
16 filter-visitor-ir-check-binary-op-nesting.c \
dcd5daf2 17 filter-visitor-ir-validate-string.c \
9f449915
PP
18 filter-visitor-ir-validate-globbing.c \
19 filter-visitor-ir-normalize-glob-patterns.c \
d00c599e 20 filter-visitor-generate-bytecode.c \
d00c599e
DG
21 filter-ast.h \
22 filter-bytecode.h \
23 filter-ir.h \
24 memstream.h
343af227 25libfilter_la_CFLAGS = -include filter-symbols.h $(AM_CFLAGS)
9f449915 26libfilter_la_LIBADD = $(top_builddir)/src/common/string-utils/libstring-utils.la
d00c599e 27
3ec89b08 28AM_YFLAGS = -t -d -v -Wno-yacc
11138250
PP
29
30# start with empty files to clean
31CLEANFILES =
32
33if HAVE_BISON
34# we have bison: we can clean the generated parser files
35CLEANFILES += filter-parser.c filter-parser.h filter-parser.output
36else # HAVE_BISON
37# create target used to stop the build if we want to build the parser,
38# but we don't have the necessary tool to do so
39ERR_MSG = "Error: Cannot build target because bison is missing."
40ERR_MSG += "Make sure bison is installed and run the configure script again."
41
42filter-parser.c filter-parser.h: filter-parser.y
43 @echo $(ERR_MSG)
44 @false
45
46all-local: filter-parser.c filter-parser.h
47endif # HAVE_BISON
48
49if HAVE_FLEX
50# we have flex: we can clean the generated lexer files
51CLEANFILES += filter-lexer.c
52else # HAVE_FLEX
53# create target used to stop the build if we want to build the lexer,
54# but we don't have the necessary tool to do so
55ERR_MSG = "Error: Cannot build target because flex is missing."
56ERR_MSG += "Make sure flex is installed and run the configure script again."
57
58filter-lexer.c: filter-lexer.l
59 @echo $(ERR_MSG)
60 @false
61
62all-local: filter-lexer.c
63endif # HAVE_FLEX
64
d00c599e
DG
65filter_grammar_test_SOURCES = filter-grammar-test.c
66filter_grammar_test_LDADD = libfilter.la
This page took 0.04466 seconds and 4 git commands to generate.