aboutsummaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
new file mode 100644
index 0000000..d5c770b
--- /dev/null
+++ b/test/Makefile
@@ -0,0 +1,16 @@
+test:
+ @$(MAKE) -C core
+ @$(MAKE) -C lua
+ @$(MAKE) -C vis
+ @$(MAKE) -C sam
+ @$(MAKE) -C vim
+
+clean:
+ @$(MAKE) -C core clean
+ @$(MAKE) -C lua clean
+ @$(MAKE) -C vis clean
+ @$(MAKE) -C sam clean
+ @$(MAKE) -C vim clean
+ @$(MAKE) -C util clean
+
+.PHONY: test clean