-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
15 lines (10 loc) · 894 Bytes
/
Makefile
File metadata and controls
15 lines (10 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
COQMFFLAGS := -Q . PLF
ALLVFILES := Maps.v Imp.v Preface.v Equiv.v Hoare.v Hoare2.v HoareAsLogic.v Smallstep.v Types.v Stlc.v StlcProp.v MoreStlc.v Sub.v Typechecking.v Records.v References.v RecordSub.v Norm.v LibTactics.v UseTactics.v UseAuto.v PE.v Postscript.v Bib.v MapsTest.v ImpTest.v PrefaceTest.v EquivTest.v HoareTest.v Hoare2Test.v HoareAsLogicTest.v SmallstepTest.v TypesTest.v StlcTest.v StlcPropTest.v MoreStlcTest.v SubTest.v TypecheckingTest.v RecordsTest.v ReferencesTest.v RecordSubTest.v NormTest.v LibTacticsTest.v UseTacticsTest.v UseAutoTest.v PETest.v PostscriptTest.v BibTest.v
build: Makefile.coq
$(MAKE) -f Makefile.coq
clean:
if [ -e Makefile.coq ]; then $(MAKE) -f Makefile.coq cleanall; fi
$(RM) $(wildcard Makefile.coq Makefile.coq.conf)
Makefile.coq:
coq_makefile $(COQMFFLAGS) -o Makefile.coq $(ALLVFILES)
.PHONY: build clean