diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e32cef --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,20 @@ | |||
1 | # Modified from the Logical Foundations Makefile | ||
2 | |||
3 | COQMFFLAGS := -Q . mininix | ||
4 | |||
5 | ALLVFILES := maptools.v relations.v expr.v shared.v binop.v matching.v sem.v \ | ||
6 | interpreter.v complete.v sound.v correct.v semprop.v | ||
7 | |||
8 | build: Makefile.coq | ||
9 | $(MAKE) -f Makefile.coq | ||
10 | |||
11 | clean:: | ||
12 | if [ -e Makefile.coq ]; then $(MAKE) -f Makefile.coq cleanall; fi | ||
13 | $(RM) $(wildcard Makefile.coq Makefile.coq.conf) | ||
14 | |||
15 | Makefile.coq: | ||
16 | coq_makefile $(COQMFFLAGS) -o Makefile.coq $(ALLVFILES) | ||
17 | |||
18 | -include Makefile.coq | ||
19 | |||
20 | .PHONY: build clean | ||