summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax Christian Pohle2021-11-21 00:10:29 +0100
committerMax Christian Pohle2021-11-21 00:10:29 +0100
commitb7b47e662a75096c7f99881b0d609731d5d6c8ce (patch)
tree113da9bbb5335f6ba48f08029c9e5a050d6304b7 /Makefile
parentf5e12f35af533713312f29054ad0ffd00c0fcabd (diff)
downloadohmycgi-b7b47e662a75096c7f99881b0d609731d5d6c8ce.tar.bz2
ohmycgi-b7b47e662a75096c7f99881b0d609731d5d6c8ce.zip
First working version
TODO: needs refactoring
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
..