From 0b4808a3705317c96387de036381e4e6add4e956 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 31 Mar 2020 19:40:21 +0100 Subject: Add documentation and fix makefile for Compcert --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1b4e39b..3c62851 100644 --- a/Makefile +++ b/Makefile @@ -18,10 +18,15 @@ PREFIX ?= . .PHONY: all install proof clean extraction -all: +all: lib/COMPCERTSTAMP $(MAKE) proof $(MAKE) compile +lib/COMPCERTSTAMP: + (cd lib/CompCert && ./configure x86_64-linux) + $(MAKE) -C lib/CompCert + touch $@ + install: install -d $(PREFIX)/bin install -C _build/default/driver/compcert.ini $(PREFIX)/bin/. -- cgit