5 lines
77 B
Makefile
5 lines
77 B
Makefile
debug:
|
|
gcc -g hamt.c main.c -o main
|
|
release:
|
|
gcc -O2 hamt.c main.c -o main
|