5 lines
75 B
Makefile
5 lines
75 B
Makefile
release:
|
|
gcc qs.c -O2 -o qs && ./qs
|
|
debug:
|
|
gcc qs.c -g -o qs && gdb ./qs
|