out=ctimer warn = -Wall -Wpedantic all: if [[ ! -d obj ]]; then mkdir obj; fi cc $(dbg) $(warn) -c src/ctime.c -o obj/ctime.o cc $(dbg) $(warn) src/main.c obj/* -o $(out) debug: make dbg=-g