aboutsummaryrefslogtreecommitdiff
path: root/test/lua/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua/Makefile')
-rw-r--r--test/lua/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/lua/Makefile b/test/lua/Makefile
new file mode 100644
index 0000000..a7afc80
--- /dev/null
+++ b/test/lua/Makefile
@@ -0,0 +1,16 @@
+all: clean ../../vis test
+
+../../vis: ../../*.[ch]
+ @echo Compiling vis
+ @$(MAKE) -C ../..
+
+clean:
+ @rm -f *.out *.err *.busted
+
+test:
+ @./test.sh
+
+%: %.in
+ @./test.sh $@
+
+.PHONY: all clean test