adamc@2: MODULES := Tactics StackMachine adamc@2: VS := $(MODULES:%=%.v) adamc@2: GLOBALS := .coq_globals adamc@2: adamc@2: .PHONY: coq clean adamc@2: adamc@2: coq: Makefile.coq adamc@2: make -f Makefile.coq adamc@2: adamc@2: Makefile.coq: Makefile $(VS) adamc@2: coq_makefile $(VS) \ adamc@2: COQC = "coqc -impredicative-set -dump-glob $(GLOBALS)" \ adamc@2: -o Makefile.coq adamc@2: adamc@2: clean:: Makefile.coq adamc@2: make -f Makefile.coq clean adamc@2: rm -f Makefile.coq .depend