aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/coq/Makefile
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-11-30 15:28:56 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2011-11-30 15:28:56 -0500
commitd35896d2f29d23c3cd4c180f9249e44ebf7ed208 (patch)
tree46bd1fc7feee6dad73467084bb05bff6b03b69c4 /src/coq/Makefile
parentb0da719acd2e225d83e064e9336e1097b87df6d8 (diff)
Update Coq semantics for 8.3pl2
Diffstat (limited to 'src/coq/Makefile')
-rw-r--r--src/coq/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/coq/Makefile b/src/coq/Makefile
new file mode 100644
index 00000000..fc488d68
--- /dev/null
+++ b/src/coq/Makefile
@@ -0,0 +1,14 @@
+MODULES := Axioms Name Syntax Semantics
+VS := $(MODULES:%=%.v)
+
+.PHONY: coq clean
+
+coq: Makefile.coq
+ make -f Makefile.coq
+
+Makefile.coq: Makefile $(VS)
+ coq_makefile -impredicative-set $(VS) -o Makefile.coq
+
+clean:: Makefile.coq
+ make -f Makefile.coq clean
+ rm -f Makefile.coq