summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 14c362c..8051094 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ cflags.debug := -Wall -o0 -g -DDEBUG=1
4cflags.release := -os -s 4cflags.release := -os -s
5CFLAGS := ${cflags.${BUILD}} 5CFLAGS := ${cflags.${BUILD}}
6 6
7LIBS := -lcups 7LIBS := -lcups -lmagic
8 8
9CFLAGS += -L/usr/local/lib 9CFLAGS += -L/usr/local/lib
10CFLAGS += -I/usr/local/include 10CFLAGS += -I/usr/local/include
@@ -14,6 +14,9 @@ FILES := cgi.c http_parser.c
14test: main 14test: main
15 ./main.${BUILD} 15 ./main.${BUILD}
16 16
17test_param: main
18 ./main.${BUILD} --test1 -a -b -c --test2 --pidfile=foo --pidfile foobar
19
17main: clean 20main: clean
18 $(CC) $(CFLAGS) -o $@.${BUILD} $(FILES) main.c $(LIBS) 21 $(CC) $(CFLAGS) -o $@.${BUILD} $(FILES) main.c $(LIBS)
19 22
..