1 AUTOMAKE_OPTIONS = foreign no-dependencies
3 AM_CPPFLAGS = -DPREFIX='"${prefix}"'
4 AM_CPPFLAGS += -DCONFIGFILE='"${sysconfdir}/collection.conf"'
6 if COMPILER_IS_GCC
7 AM_CFLAGS = -Wall -Wextra
8 endif
10 AM_YFLAGS = -d
12 BUILT_SOURCES = parser.h
14 bin_PROGRAMS = collection.fcgi
16 collection_fcgi_SOURCES = main.c \
17 oconfig.c oconfig.h aux_types.h scanner.l parser.y \
18 action_graph.c action_graph.h \
19 action_list_graphs.c action_list_graphs.h \
20 action_list_hosts.c action_list_hosts.h \
21 action_search.c action_search.h \
22 action_search_json.c action_search_json.h \
23 action_show_graph.c action_show_graph.h \
24 action_show_graph_json.c action_show_graph_json.h \
25 action_show_instance.c action_show_instance.h \
26 common.c common.h \
27 filesystem.c filesystem.h \
28 graph_types.h \
29 graph.c graph.h \
30 graph_config.c graph_config.h \
31 graph_def.c graph_def.h \
32 graph_ident.c graph_ident.h \
33 graph_instance.c graph_instance.h \
34 graph_list.c graph_list.h \
35 rrd_args.c rrd_args.h \
36 utils_array.c utils_array.h \
37 utils_cgi.c utils_cgi.h \
38 utils_search.c utils_search.h