9 lines
172 B
Makefile
9 lines
172 B
Makefile
debug: test.cpp magyarsort.h
|
|
g++ test.cpp -g -std=c++14 -o test.out
|
|
|
|
release: test.cpp magyarsort.h
|
|
g++ test.cpp -o -std=c++14 -O2 test.out
|
|
|
|
clean: test.out
|
|
rm test.out
|