diff options
| author | Yves Bertot | 2018-05-07 17:33:42 +0200 |
|---|---|---|
| committer | GitHub | 2018-05-07 17:33:42 +0200 |
| commit | c448a24f71dade70a487e289fc016c953f986542 (patch) | |
| tree | 7385428784d8609827995895766af07c620ae921 /tuto2/Makefile | |
| parent | ccd7aa81d1898431dc9c5889e4370a57759664be (diff) | |
| parent | 42bd3548b84283259eae452c7bce56dfa02fb3c4 (diff) | |
Merge pull request #1 from matejkosik/master
add some more material (preliminary provided in "tuto2" directory)
Diffstat (limited to 'tuto2/Makefile')
| -rw-r--r-- | tuto2/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tuto2/Makefile b/tuto2/Makefile new file mode 100644 index 0000000000..e0e197650d --- /dev/null +++ b/tuto2/Makefile @@ -0,0 +1,14 @@ +ifeq "$(COQBIN)" "" + COQBIN=$(dir $(shell which coqtop))/ +endif + +%: Makefile.coq + +Makefile.coq: _CoqProject + $(COQBIN)coq_makefile -f _CoqProject -o Makefile.coq + +tests: all + @$(MAKE) -C tests -s clean + @$(MAKE) -C tests -s all + +-include Makefile.coq |
