summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bfb3df5..b15cafb 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,8 @@ 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
8
7test: main 9test: main
8 ./main 10 ./main
9 11
@@ -13,5 +15,5 @@ clean:
13 rm -f ./main 15 rm -f ./main
14 16
15%: 17%:
16 $(CC) $(CFLAGS) -o $@ $@.c 18 $(CC) $(CFLAGS) -o $@ *.c $(LIBS)
17 19
..