diff options
author | cathook <b01902109@csie.ntu.edu.tw> | 2014-10-21 17:51:03 +0800 |
---|---|---|
committer | cathook <b01902109@csie.ntu.edu.tw> | 2014-10-21 17:51:03 +0800 |
commit | f7770eea2208dba6f3171adcb268f446263275cb (patch) | |
tree | 6723c6bb73610e74aebc41317eda423a5dbd617d /meowpp/Makefile | |
parent | bf5c9f2ae5c436aa7f59b28bb5e94b0362bfa358 (diff) | |
download | meow-f7770eea2208dba6f3171adcb268f446263275cb.tar meow-f7770eea2208dba6f3171adcb268f446263275cb.tar.gz meow-f7770eea2208dba6f3171adcb268f446263275cb.tar.bz2 meow-f7770eea2208dba6f3171adcb268f446263275cb.tar.lz meow-f7770eea2208dba6f3171adcb268f446263275cb.tar.xz meow-f7770eea2208dba6f3171adcb268f446263275cb.tar.zst meow-f7770eea2208dba6f3171adcb268f446263275cb.zip |
big change
Diffstat (limited to 'meowpp/Makefile')
-rw-r--r-- | meowpp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meowpp/Makefile b/meowpp/Makefile index b087830..04ccf22 100644 --- a/meowpp/Makefile +++ b/meowpp/Makefile @@ -1,3 +1,4 @@ +MEOWPP_DIR ?= . CXX ?= g++ CXXFLAGS ?= -g -Wall -Werror -std=c++11 -pedantic @@ -5,7 +6,7 @@ CXXFLAGS ?= -g -Wall -Werror -std=c++11 -pedantic .PHONY: meowpp_test meowpp_test_clean meowpp_test: - meowpp/test.py -c '$(CXX) $(CXXFLAGS)' -p '$(CURRENT_DIR)' -P '$(MEOWPP_DIR)' + $(MEOWPP_DIR)/test.py -c '$(CXX) $(CXXFLAGS)' -p '$(MEOWPP_DIR)' -P '$(MEOWPP_DIR)' meowpp_test_clean: find '$(MEOWPP_DIR)' -regex '^.*\.bin$$' -exec rm {} \; |