magyarsort/makefile

24 lines
595 B
Makefile
Raw Normal View History

2021-03-11 21:38:06 +01:00
debug: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
g++ test.cpp -g -std=c++17 -o test.out
2021-03-11 21:38:06 +01:00
2021-12-14 17:29:33 +01:00
release_coz: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
g++ test.cpp -g1 -gdwarf-2 -std=c++17 -O2 -ldl -o test.out
2021-12-14 17:29:33 +01:00
release_debug_sym: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
g++ test.cpp -g -std=c++17 -O2 -o test.out
2021-03-11 21:38:06 +01:00
release: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
g++ test.cpp -std=c++17 -O2 -o test.out
2021-03-11 21:38:06 +01:00
release3: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
g++ test.cpp -std=c++17 -O3 -o test.out
clang_release: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
clang++ test.cpp -std=c++17 -O2 -o test.out
clang_release3: test.cpp magyarsort.h
2022-01-25 20:04:25 +01:00
clang++ test.cpp -std=c++17 -O3 -o test.out
2021-03-11 21:38:06 +01:00
clean: test.out
rm test.out