myqsort/makefile

5 lines
75 B
Makefile
Raw Permalink Normal View History

release:
gcc qs.c -O2 -o qs && ./qs
debug:
gcc qs.c -g -o qs && gdb ./qs