24 lines
595 B
Makefile
24 lines
595 B
Makefile
debug: test.cpp magyarsort.h
|
|
g++ test.cpp -g -std=c++14 -o test.out
|
|
|
|
release_coz: test.cpp magyarsort.h
|
|
g++ test.cpp -g1 -gdwarf-2 -std=c++14 -O2 -ldl -o test.out
|
|
|
|
release_debug_sym: test.cpp magyarsort.h
|
|
g++ test.cpp -g -std=c++14 -O2 -o test.out
|
|
|
|
release: test.cpp magyarsort.h
|
|
g++ test.cpp -std=c++14 -O2 -o test.out
|
|
|
|
release3: test.cpp magyarsort.h
|
|
g++ test.cpp -std=c++14 -O3 -o test.out
|
|
|
|
clang_release: test.cpp magyarsort.h
|
|
clang++ test.cpp -std=c++14 -O2 -o test.out
|
|
|
|
clang_release3: test.cpp magyarsort.h
|
|
clang++ test.cpp -std=c++14 -O3 -o test.out
|
|
|
|
clean: test.out
|
|
rm test.out
|