lh-l4v/proof/Makefile

68 lines
1.6 KiB
Makefile

#
# Copyright 2014, General Dynamics C4 Systems
#
# This software may be distributed and modified according to the terms of
# the GNU General Public License version 2. Note that NO WARRANTY is provided.
# See "LICENSE_GPLv2.txt" for details.
#
# @TAG(GD_GPL)
#
## Targets
images: BaseRefine CBaseRefine Refine CRefine
default: images test
test:
all: images test
report-regression:
@echo Refine Access CBaseRefine CRefine \
DRefine InfoFlow InfoFlowCBase InfoFlowC DPolicy \
DSpecProofs SepTacticsExamples Bisim
#
# Setup heaps.
#
# Refine heaps.
HEAPS += AInvs BaseRefine BaseRefine2 Refine
# CRefine heaps.
HEAPS += CKernel CSpec CBaseRefine CRefine
# capDL heaps.
HEAPS += DBaseRefine DRefine DPolicy SepDSpec DSpecProofs
# Security Proofs
HEAPS += Access InfoFlow InfoFlowCBase InfoFlowC
# Binary Verification
HEAPS += SimplExportAndRefine
# Separation Kernel Bisimilarity
HEAPS += Bisim
# Separation Logic Tactics
HEAPS += SepTactics SepTacticsExamples
# Additional dependencies
SimplExportAndRefine: c-kernel
BaseRefine Refine DBaseRefine DRefine: design-spec
CBaseRefine CRefine CKernel CSpec: c-kernel design-spec
# Preprocess the kernel's source code and bitfield theory files.
c-kernel: .FORCE
cd ../spec && $(ISABELLE_TOOL) env make c-kernel
.PHONY: c-kernel
# Run the haskell translator
design-spec: .FORCE
cd ../spec && $(ISABELLE_TOOL) env make design-spec
.PHONY: design-spec
include ../misc/isa-common.mk
# SimplExportOnly is a bit special, because we need to *not* build an image.
SimplExportOnly: c-kernel
$(ISABELLE_TOOL) build -v -c -d $(ROOT_PATH) $@
.PHONY: SimplExportOnly