summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-14 23:04:13 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-14 23:04:13 +0900
commit8085817cb5737ca0c2a4afb5e3d013a395e12eb4 (patch)
tree633371b8956a39b5c570d745bdfa963e42111158 /Makefile
parent0c6ff97b8e88e6f848ba73a2bf799de98d27a526 (diff)
downloadmruby-8085817cb5737ca0c2a4afb5e3d013a395e12eb4.tar.gz
mruby-8085817cb5737ca0c2a4afb5e3d013a395e12eb4.zip
make test restructuring
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5b605131a..2870dcf29 100644
--- a/Makefile
+++ b/Makefile
@@ -27,11 +27,10 @@ all :
@$(MAKE) -C tools/mruby $(MAKE_FLAGS)
@$(MAKE) -C tools/mirb $(MAKE_FLAGS)
-# mruby iso test
-.PHONY : mrit
-mrit :
+# mruby test
+.PHONY : test
+test :
@$(MAKE) -C test $(MAKE_FLAGS)
- @$(MAKE) -C tools/mrit $(MAKE_FLAGS)
# clean up
.PHONY : clean
@@ -39,5 +38,4 @@ clean :
@$(MAKE) clean -C src $(MAKE_FLAGS)
@$(MAKE) clean -C tools/mruby $(MAKE_FLAGS)
@$(MAKE) clean -C tools/mirb $(MAKE_FLAGS)
- @$(MAKE) clean -C tools/mrit $(MAKE_FLAGS)
@$(MAKE) clean -C test $(MAKE_FLAGS)