20 lines
341 B
Makefile
20 lines
341 B
Makefile
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
|