diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-09-22 16:33:38 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-09-22 16:33:38 -0700 |
commit | bd7244fb6b673dbb28ebaa8165fd6a2b22cf84b2 (patch) | |
tree | 2e30670d0800e92906dbcf6af981ac8184e12132 /makefile | |
parent | 28103e503af6ac4bedc28a721e9a67355e61d32e (diff) | |
download | mu-bd7244fb6b673dbb28ebaa8165fd6a2b22cf84b2.tar.gz |
3410
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/makefile b/makefile index 66f890ee..b87a5c74 100644 --- a/makefile +++ b/makefile @@ -9,9 +9,7 @@ all: mu_bin core.mu # beware: if you introduce or delete functions the makefile isn't smart enough # to recompute dependencies. You have to manually run 'make redo' to recreate # the .build/ directory from scratch. -redo: - rm -rf mu.cc core.mu mu_bin* *_list .build - @make +redo: clean1 all CXX ?= c++ CXXFLAGS ?= -g -O3 @@ -77,8 +75,11 @@ test_list: mu.cc .PHONY: all redo clean clena clena: clean -clean: redo +clean: clean1 cd enumerate && make clean cd tangle && make clean cd cleave && make clean cd termbox && make clean + +clean1: + rm -rf mu.cc core.mu mu_bin* *_list .build |