magyarsort/makefile
2021-03-11 21:38:06 +01:00

9 lines
146 B
Makefile

debug: test.cpp magyarsort.h
g++ test.cpp -g -o test.out
release: test.cpp magyarsort.h
g++ test.cpp -o test.out
clean: test.out
rm test.out