blob: 06f7be0e9f38e0d83555c6ead329d443db8bf198 (
plain)
1 out=ctimer
2 warn = -Wall -Wpedantic
3
4 all:
5 if [[ ! -d obj ]]; then mkdir obj; fi
6 cc $(dbg) $(warn) -c src/ctime.c -o obj/ctime.o
7 cc $(dbg) $(warn) src/main.c obj/* -o $(out)
8
9 debug:
10 make dbg=-g
|