-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
28 lines (23 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%.agdai: %.agda
/usr/bin/env agda $<
AGDA = Labels.agda Types.agda Variables.agda \
GTLC.agda GTLC2CC.agda \
PreCastStructure.agda CastStructure.agda \
ParamCastCalculus.agda ParamCastReduction.agda ParamCastDeterministic.agda \
Subtyping.agda CastStructureWithBlameSafety.agda ParamCastSubtyping.agda ParamBlameSubtyping.agda \
ParamCCPrecision.agda ParamGradualGuaranteeAux.agda ParamGradualGuaranteeSim.agda ParamGradualGuarantee.agda \
GroundCast.agda GroundCastBlame.agda GroundCastGG.agda \
GroundInertX.agda GroundInertXBlame.agda GroundInertXGG.agda \
GroundCoercions.agda GroundCoercionsBlame.agda \
SimpleCast.agda SimpleCastBlame.agda \
SimpleFunCast.agda SimpleFunCastBlame.agda \
SimpleCoercions.agda SimpleCoercionsBlame.agda \
LazyCast.agda LazyCastBlame.agda \
LazyCoercions.agda LazyCoercionsBlame.agda \
EfficientParamCasts.agda SpaceEfficient.agda PreserveHeight.agda \
EfficientGroundCoercions.agda \
HyperCoercions.agda
AGDAI = $(AGDA:%.agda=%.agdai)
all: ${AGDA} ${AGDAI}
clean:
rm -f *.agdai *~