mirror of
https://github.com/pingcap/tla-plus.git
synced 2024-12-28 13:30:10 +08:00
21 lines
437 B
Makefile
21 lines
437 B
Makefile
# 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: all clean
|