aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorcathook <b01902109@csie.ntu.edu.tw>2014-10-18 04:18:27 +0800
committercathook <b01902109@csie.ntu.edu.tw>2014-10-18 04:18:27 +0800
commitfa817eee52694a15241c7d65c578f37c1b869dc9 (patch)
treed1e57674f7ef83f1c01de02ce0c6cf153dae39c3 /Makefile
parent0f02ab1d29fc9a9da871711189047572b7724ad0 (diff)
downloadmeow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.gz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.bz2
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.lz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.xz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.zst
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.zip
Move the test code into the main folder
also remove the doc directory from the git filesystem
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 6 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index ac0aeb5..f1a577d 100644
--- a/Makefile
+++ b/Makefile
@@ -21,22 +21,14 @@ DOXYGEN_OUTPUT_DIR = $(CURRENT_DIR)/doc
###########################################################
-MEOWPP_UNITTEST_DIR = $(CURRENT_DIR)/meowpp_unittest
-
-###########################################################
-
-MEOWJS_UNITTEST_DIR = $(CURRENT_DIR)/meowjs_unittest
-
-###########################################################
-
.PHONY: all install clean
all: readme doc
install:
- echo 'Not implement yet.'
+ @echo 'Not implement yet.' && exit 1
-clean: unittest_clean doc_clean
+clean: test_clean doc_clean
readme: $(README) $(README_HTML)
@@ -44,16 +36,16 @@ doc: document
doc_clean: document_clean
-unittest: meowpp_unittest meowjs_unittest
+test: meowpp_test meowjs_test
-unittest_clean: meowpp_unittest_clean meowjs_unittest_clean
+test_clean: meowpp_test_clean meowjs_test_clean
###########################################################
include $(README_SOURCE_DIR)/Makefile
include $(DOXYGEN_CONFIG_PATH)/Makefile
-include $(MEOWPP_UNITTEST_DIR)/Makefile
-include $(MEOWJS_UNITTEST_DIR)/Makefile
+include $(MEOWPP_DIR)/Makefile
+include $(MEOWJS_DIR)/Makefile
###########################################################