graph_data_json action: Implemented action to query graph data via JSON.
[collection4.git] / src / Makefile.am
1 AUTOMAKE_OPTIONS = foreign no-dependencies
2
3 AM_CPPFLAGS = -DPREFIX='"${prefix}"'
4 AM_CPPFLAGS += -DCONFIGFILE='"${sysconfdir}/collection.conf"'
5
6 if COMPILER_IS_GCC
7 AM_CFLAGS = -Wall -Wextra
8 endif
9
10 AM_YFLAGS = -d
11
12 BUILT_SOURCES = parser.h
13
14 bin_PROGRAMS = collection.fcgi
15
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_graph_data_json.c action_graph_data_json.h \
20                           action_graph_def_json.c action_graph_def_json.h \
21                           action_list_graphs.c action_list_graphs.h \
22                           action_list_hosts.c action_list_hosts.h \
23                           action_search.c action_search.h \
24                           action_search_json.c action_search_json.h \
25                           action_show_graph.c action_show_graph.h \
26                           action_show_graph_json.c action_show_graph_json.h \
27                           action_show_instance.c action_show_instance.h \
28                           common.c common.h \
29                           data_provider.c data_provider.h \
30                           dp_rrdtool.c dp_rrdtool.h \
31                           filesystem.c filesystem.h \
32                           graph_types.h \
33                           graph.c graph.h \
34                           graph_config.c graph_config.h \
35                           graph_def.c graph_def.h \
36                           graph_ident.c graph_ident.h \
37                           graph_instance.c graph_instance.h \
38                           graph_list.c graph_list.h \
39                           rrd_args.c rrd_args.h \
40                           utils_array.c utils_array.h \
41                           utils_cgi.c utils_cgi.h \
42                           utils_search.c utils_search.h