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