aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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
###########################################################