From e58c656f8223909cfcf531bbd19e32bf50bd162b Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Tue, 14 Dec 2021 20:35:56 +0100 Subject: rm Flocq from RECDIRS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c9bf9ed4..8b50375f 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ BACKENDLIB?=Asmgenproof0.v Asmgenproof1.v DIRS := lib lib/Impure common $(ARCHDIRS) scheduling backend cfrontend driver \ export cparser -RECDIRS:=lib common $(ARCHDIRS) scheduling backend cfrontend driver flocq exportclight \ +RECDIRS:=lib common $(ARCHDIRS) scheduling backend cfrontend driver exportclight \ cparser COQINCLUDES := $(foreach d, $(DIRS), -R $(d) compcert.$(subst /,.,$d)) -- cgit From 2b05d4e7657a0d838e1003ababf19dca43029b64 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 2 Feb 2022 15:53:13 +0100 Subject: attempts at dealing with gappa --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8b50375f..5ed2c580 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ COQCOPTS ?= \ cparser/Parser.vo: COQCOPTS += -w -deprecated-instance-without-locality -COQC="$(COQBIN)coqc" -q $(COQINCLUDES) $(COQCOPTS) +COQC=PATH=tools:$$PATH "$(COQBIN)coqc" -q $(COQINCLUDES) $(COQCOPTS) COQDEP="$(COQBIN)coqdep" $(COQINCLUDES) COQDOC="$(COQBIN)coqdoc" COQEXEC="$(COQBIN)coqtop" $(COQINCLUDES) -batch -load-vernac-source @@ -297,6 +297,13 @@ else ocamlc -o tools/modorder str.cma tools/modorder.ml endif +tools/gappa: + echo "#!/bin/sh" > $@ + echo -n "exec " >> $@ + which gappa | tr -d '\n' >> $@ + echo ' -Eprecision=100 "$$@"' >> $@ + chmod a+rx $@ + latexdoc: cd doc; $(COQDOC) --latex -o doc/doc.tex -g $(FILES) -- cgit From d8c61b62f1673ac36aca5584da5909c2a8994a9a Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 2 Feb 2022 17:09:21 +0100 Subject: dependency to generate gappa script --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5ed2c580..a841569b 100644 --- a/Makefile +++ b/Makefile @@ -307,7 +307,7 @@ tools/gappa: latexdoc: cd doc; $(COQDOC) --latex -o doc/doc.tex -g $(FILES) -%.vo: %.v +%.vo: %.v tools/gappa @rm -f doc/$(*F).glob @echo "COQC $*.v" @$(COQC) -dump-glob doc/$(*F).glob $*.v -- cgit