diff options
author | Son HO | 2024-02-11 15:28:23 +0100 |
---|---|---|
committer | GitHub | 2024-02-11 15:28:23 +0100 |
commit | 305f916c602457b0a1fa8ce5569c6c0bf26d6f8e (patch) | |
tree | ab7c8d7dd3aa62e16e2cf84467da3d5fbb156711 /tests/coq/demo/Makefile | |
parent | eb8bddcbd120f666f74023de9a23c48e1a55833d (diff) | |
parent | dd41ce4d968222824d36a295194a0de003d7a822 (diff) |
Merge pull request #73 from AeneasVerif/son/demo
Add some demo files
Diffstat (limited to 'tests/coq/demo/Makefile')
-rw-r--r-- | tests/coq/demo/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/coq/demo/Makefile b/tests/coq/demo/Makefile new file mode 100644 index 00000000..1a5aee4a --- /dev/null +++ b/tests/coq/demo/Makefile @@ -0,0 +1,23 @@ +# This file was automatically generated - modify ../Makefile.template instead +# Makefile originally taken from coq-club + +%: Makefile.coq phony + +make -f Makefile.coq $@ + +all: Makefile.coq + +make -f Makefile.coq all + +clean: Makefile.coq + +make -f Makefile.coq clean + rm -f Makefile.coq + +Makefile.coq: _CoqProject Makefile + coq_makefile -f _CoqProject | sed 's/$$(COQCHK) $$(COQCHKFLAGS) $$(COQLIBS)/$$(COQCHK) $$(COQCHKFLAGS) $$(subst -Q,-R,$$(COQLIBS))/' > Makefile.coq + +_CoqProject: ; + +Makefile: ; + +phony: ; + +.PHONY: all clean phony |