feat: update structure
This commit is contained in:
19
cs2106/labs/lab4/bitmap/Makefile
Normal file
19
cs2106/labs/lab4/bitmap/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
.PHONY: run
|
||||
|
||||
bitmap: bitmap.c testmap.c
|
||||
gcc $^ -o $@
|
||||
|
||||
run-bitmap: bitmap
|
||||
./bitmap
|
||||
|
||||
mymalloc: mymalloc.c testmalloc.c bitmap.c
|
||||
gcc $^ -o $@
|
||||
|
||||
run-mymalloc: mymalloc
|
||||
./mymalloc
|
||||
|
||||
harness: harness.c mymalloc.c bitmap.c
|
||||
gcc $^ -o $@
|
||||
|
||||
run-harness: harness
|
||||
./harness
|
||||
Reference in New Issue
Block a user