This commit is contained in:
2025-03-21 10:54:32 +10:00
commit e297aa1659
8 changed files with 790 additions and 0 deletions

19
Makefile Normal file
View 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