aboutsummaryrefslogtreecommitdiff
path: root/sam/Makefile
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-11-02 23:17:57 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-11-03 23:28:15 +0100
commitd5075cfdb093af473dea17f4d492da4afb105b13 (patch)
tree3e8003ae74eee853a4f8fcf6036374e2da68423e /sam/Makefile
parent9d0ea4418257df19709d8984ced4c63b9b1a2bab (diff)
downloadvis-d5075cfdb093af473dea17f4d492da4afb105b13.tar.gz
vis-d5075cfdb093af473dea17f4d492da4afb105b13.tar.xz
test/sam: add sam testing infrastructure
Compare structural regular expression implementation with the one of sam(1).
Diffstat (limited to 'sam/Makefile')
-rw-r--r--sam/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/sam/Makefile b/sam/Makefile
new file mode 100644
index 0000000..3a91582
--- /dev/null
+++ b/sam/Makefile
@@ -0,0 +1,12 @@
+test: ../../vis
+ @./test.sh
+
+../../vis: ../../*.[ch]
+ @echo Compiling vis
+ @$(MAKE) -C ../..
+
+clean:
+ @echo cleaning
+ @find . -name '*.out' -o -name '*.err' | xargs rm -f
+
+.PHONY: clean test