Files
nus/cs2106/labs/lab4/linkedlist/wf/Makefile
2024-01-22 14:27:44 +08:00

14 lines
198 B
Makefile

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