Build system: Install the config file.
[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_list_graphs.c action_list_graphs.h \
20                           common.c common.h \
21                           filesystem.c filesystem.h \
22                           graph_types.h \
23                           graph.c graph.h \
24                           graph_config.c graph_config.h \
25                           graph_def.c graph_def.h \
26                           graph_ident.c graph_ident.h \
27                           graph_instance.c graph_instance.h \
28                           graph_list.c graph_list.h \
29                           utils_array.c utils_array.h \
30                           utils_params.c utils_params.h