aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorMaxime Dénès2019-04-25 12:02:43 +0200
committerMaxime Dénès2019-04-25 12:09:44 +0200
commit66b6e83f4f4c32ad86333e13d65329be02c46048 (patch)
treea7c2ae2edfe69f8a207d990b6f34f7a497615a27 /tests/Makefile
parent5131640774d0256a390790b5becc864935585ce8 (diff)
Prepare merge into Coq
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index d85ae90dd6..0000000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-ifeq "$(COQBIN)" ""
- COQBIN=$(dir $(shell which coqc))/
-endif
-
-all: $(patsubst %.v,%.v.log,$(wildcard *.v))
-
-%.v.log: %.v
- $(COQBIN)/coqc -I ../src -Q ../theories Ltac2 $< > $@
- if [ $$? = 0 ]; then \
- echo " $<... OK"; \
- else \
- echo " $<... FAIL!"; \
- fi; \
-
-clean:
- rm -f *.log