nus/cs2106/labs/lab4/linkedlist/ff/Makefile

15 lines
199 B
Makefile

.PHONY: run test
run: harness-ff
./harness-ff
test: testmalloc
./testmalloc
harness-ff: harness-ff.c llist.c mymalloc.c
gcc $^ -o $@
testmalloc: testmalloc.c mymalloc.c llist.c
gcc $^ -o $@