make: c++14 and -O2

This commit is contained in:
Richard Thier 2021-03-13 11:12:29 +01:00
parent 1d0ba81e49
commit 4199393153

View File

@ -1,8 +1,8 @@
debug: test.cpp magyarsort.h
g++ test.cpp -g -o test.out
g++ test.cpp -g -std=c++14 -o test.out
release: test.cpp magyarsort.h
g++ test.cpp -o test.out
g++ test.cpp -o -std=c++14 -O2 test.out
clean: test.out
rm test.out