action graph: Added some code to determine the DS names from RRD files.
[collection4.git] / Makefile
1 CC = gcc
2 CPPFLAGS = 
3 CFLAGS = -Wall -Wextra -O0 -g
4 LDFLAGS = 
5 LDLIBS = 
6
7 all: test.fcgi
8
9 clean:
10         rm -f test.cgi
11
12 common.o: common.c common.h
13
14 graph_list.o: graph_list.c graph_list.h
15
16 utils_params.o: utils_params.c utils_params.h
17
18 action_graph.o: action_graph.c action_graph.h
19
20 action_list_graphs.o: action_list_graphs.c action_list_graphs.h
21
22 test: test.c utils_params.o
23
24 test.fcgi: LDLIBS = -lfcgi -lrrd
25 test.fcgi: test.fcgi.c common.o graph_list.o utils_params.o action_graph.o action_list_graphs.o
26
27 .PHONY: clean
28