myqsort/makefile
2025-04-05 02:15:39 +02:00

5 lines
75 B
Makefile

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