summaryrefslogtreecommitdiff
path: root/test/vis/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/vis/Makefile')
-rw-r--r--test/vis/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/vis/Makefile b/test/vis/Makefile
new file mode 100644
index 0000000..be58c44
--- /dev/null
+++ b/test/vis/Makefile
@@ -0,0 +1,12 @@
+test: ../../vis clean
+ @./test.sh
+
+../../vis: ../../*.[ch]
+ @echo Compiling vis
+ @$(MAKE) -C ../..
+
+clean:
+ @echo cleaning
+ @find . -name '*.out' -o -name '*.err' | xargs rm -f
+
+.PHONY: clean test