diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,8 @@ cflags.debug := -Wall -o0 -g -DDEBUG=1 | |||
4 | cflags.release := -os -s | 4 | cflags.release := -os -s |
5 | CFLAGS := ${cflags.${BUILD}} | 5 | CFLAGS := ${cflags.${BUILD}} |
6 | 6 | ||
7 | LIBS := -lcups | ||
8 | |||
7 | test: main | 9 | test: 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 | ||