init
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
CC=gcc
|
||||
CFLAGS=-std=gnu99 -Wall -pedantic -I/local/courses/csse2310/include
|
||||
LDFLAGS=-L/local/courses/csse2310/lib -lcsse2310a3
|
||||
|
||||
.PHONY: all debug profile clean
|
||||
.DEFAULT_GOAL := all
|
||||
|
||||
all: sigcat hq
|
||||
|
||||
debug: CFLAGS += -g
|
||||
debug: all
|
||||
|
||||
profile: CFLAGS += -pg -fprofile-arcs -ftest-coverage
|
||||
profile: all
|
||||
|
||||
hq: hq.o job.o
|
||||
|
||||
clean:
|
||||
rm -f sigcat hq *.o
|
||||
Reference in New Issue
Block a user