graph_ident.[ch]: Move the graph_ident_t data structure into an own module.
[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_ident.o: graph_ident.c graph_ident.h
15
16 graph_list.o: graph_list.c graph_list.h
17
18 utils_array.o: utils_array.c utils_array.h
19
20 utils_params.o: utils_params.c utils_params.h
21
22 action_graph.o: action_graph.c action_graph.h
23
24 action_list_graphs.o: action_list_graphs.c action_list_graphs.h
25
26 test: test.c utils_params.o
27
28 test.fcgi: LDLIBS = -lfcgi -lrrd
29 test.fcgi: test.fcgi.c common.o graph_ident.o graph_list.o utils_array.o utils_params.o action_graph.o action_list_graphs.o
30
31 .PHONY: clean
32