diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/makefile b/makefile index f4096838..c1ed25ab 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ -mu: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a - c++ -g -O3 -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu +mu_bin: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a + c++ -g -O3 -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu_bin # To see what the program looks like after all layers have been applied, read # mu.cc @@ -19,20 +19,20 @@ termbox/libtermbox.a: termbox/*.c termbox/*.h termbox/*.inl .PHONY: autogenerated_lists test valgrind clang opt clang+opt clena -test: mu - ./mu test +test: mu_bin + ./mu_bin test valgrind: clang - valgrind --leak-check=yes -q --error-exitcode=1 ./mu test + valgrind --leak-check=yes -q --error-exitcode=1 ./mu_bin test clang: makefile mu.cc termbox/libtermbox.a autogenerated_lists - clang++ -g -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu + clang++ -g -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu_bin clang+opt: makefile mu.cc termbox/libtermbox.a autogenerated_lists - clang++ -O3 -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu + clang++ -O3 -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu_bin opt: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a autogenerated_lists - g++ -O3 -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu + g++ -O3 -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu_bin # auto-generated files; by convention they end in '_list'. autogenerated_lists: mu.cc function_list test_list @@ -58,4 +58,4 @@ clean: cd enumerate && make clean cd tangle && make clean cd termbox && make clean - -rm mu.cc core.mu mu *_list + -rm mu.cc core.mu mu_bin *_list |