diff options
author | Max Christian Pohle | 2021-11-21 00:10:29 +0100 |
---|---|---|
committer | Max Christian Pohle | 2021-11-21 00:10:29 +0100 |
commit | b7b47e662a75096c7f99881b0d609731d5d6c8ce (patch) | |
tree | 113da9bbb5335f6ba48f08029c9e5a050d6304b7 /Makefile | |
parent | f5e12f35af533713312f29054ad0ffd00c0fcabd (diff) | |
download | ohmycgi-b7b47e662a75096c7f99881b0d609731d5d6c8ce.tar.bz2 ohmycgi-b7b47e662a75096c7f99881b0d609731d5d6c8ce.zip |
First working version
TODO: needs refactoring
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 | ||