Skip to content

Commit 6c7aa56

Browse files
committed
Changed Makefile such that RezkCompletion compiles as before.
1 parent 4f932c4 commit 6c7aa56

File tree

13 files changed

+88
-24
lines changed

13 files changed

+88
-24
lines changed

Makefile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
all : hlevel2/hq.vo hlevel2/finitesets.vo Proof_of_Extensionality/funextfun.vo
22

33
hlevel2/hq.vo : hlevel2/hq.v hlevel2/hz.vo
4-
cd hlevel2/ && coqc hq
4+
cd hlevel2/ && coqc -R . Foundations.hlevel2 hq
55
hlevel2/hz.vo : hlevel2/hz.v hlevel2/hnat.vo
6-
cd hlevel2/ && coqc hz
6+
cd hlevel2/ && coqc -R . Foundations.hlevel2 hz
77

88
hlevel2/finitesets.vo : hlevel2/finitesets.v hlevel2/stnfsets.vo
9-
cd hlevel2/ && coqc finitesets
9+
cd hlevel2/ && coqc -R . Foundations.hlevel2 finitesets
1010
hlevel2/stnfsets.vo : hlevel2/stnfsets.v hlevel2/hnat.vo
11-
cd hlevel2/ && coqc stnfsets
11+
cd hlevel2/ && coqc -R . Foundations.hlevel2 stnfsets
1212

1313
hlevel2/hnat.vo : hlevel2/hnat.v hlevel2/algebra1d.vo
14-
cd hlevel2/ && coqc hnat
14+
cd hlevel2/ && coqc -R . Foundations.hlevel2 hnat
1515
hlevel2/algebra1d.vo : hlevel2/algebra1d.v hlevel2/algebra1c.vo
16-
cd hlevel2/ && coqc algebra1d
16+
cd hlevel2/ && coqc -R . Foundations.hlevel2 algebra1d
1717
hlevel2/algebra1c.vo : hlevel2/algebra1c.v hlevel2/algebra1b.vo
18-
cd hlevel2/ && coqc algebra1c
18+
cd hlevel2/ && coqc -R . Foundations.hlevel2 algebra1c
1919
hlevel2/algebra1b.vo : hlevel2/algebra1b.v hlevel2/algebra1a.vo
20-
cd hlevel2/ && coqc algebra1b
20+
cd hlevel2/ && coqc -R . Foundations.hlevel2 algebra1b
2121
hlevel2/algebra1a.vo : hlevel2/algebra1a.v hlevel2/hSet.vo
22-
cd hlevel2/ && coqc algebra1a
22+
cd hlevel2/ && coqc -R . Foundations.hlevel2 algebra1a
2323

2424
hlevel2/hSet.vo : hlevel2/hSet.v hlevel1/hProp.vo
25-
cd hlevel2/ && coqc hSet
25+
cd hlevel2/ && coqc -R . Foundations.hlevel2 hSet
2626

2727
hlevel1/hProp.vo : hlevel1/hProp.v Generalities/uu0.vo
28-
cd hlevel1/ && coqc hProp
28+
cd hlevel1/ && coqc -R . Foundations.hlevel1 hProp
2929

3030
Proof_of_Extensionality/funextfun.vo : Proof_of_Extensionality/funextfun.v Generalities/uu0.vo
31-
cd Proof_of_Extensionality/ && coqc funextfun
31+
cd Proof_of_Extensionality/ && coqc -R . Foundations.Proof_of_Extensionality funextfun
3232

3333
Generalities/uu0.vo : Generalities/uu0.v Generalities/uuu.vo
34-
cd Generalities/ && coqc uu0
34+
cd Generalities/ && coqc -R . Foundations.Generalities uu0
3535
Generalities/uuu.vo : Generalities/uuu.v
36-
cd Generalities/ && coqc uuu
36+
cd Generalities/ && coqc -R . Foundations.Generalities uuu
3737

3838

3939
clean :

Proof_of_Extensionality/funextfun.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1313

1414
Add LoadPath "../Generalities".
1515

16+
Require Export "uuu".
1617
Require Export "uu0".
1718

1819

hlevel1/hProp.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
2727

2828
Add LoadPath "../Generalities" .
2929

30+
Require Export "uuu".
3031
Require Export "uu0" .
3132

3233
(** Universe structure *)

hlevel2/algebra1a.v

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616
Add LoadPath "../hlevel1" .
1717
Add LoadPath "../Generalities".
1818

19-
Require Export hSet .
19+
Require Export "uuu".
20+
Require Export "uu0" .
21+
Require Export "hProp" .
22+
Require Export "hSet" .
2023

2124

2225
(** To upstream files *)

hlevel2/algebra1b.v

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616
Add LoadPath "../hlevel1" .
1717
Add LoadPath "../Generalities".
1818

19-
Require Export algebra1a .
19+
Require Export "uuu".
20+
Require Export "uu0" .
21+
Require Export "hProp" .
22+
Require Export "hSet" .
23+
Require Export "algebra1a" .
2024

2125

2226
(** To upstream files *)

hlevel2/algebra1c.v

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616
Add LoadPath "../hlevel1" .
1717
Add LoadPath "../Generalities".
1818

19-
Require Export algebra1b .
19+
Require Export "uuu".
20+
Require Export "uu0" .
21+
Require Export "hProp" .
22+
Require Export "hSet" .
23+
Require Export "algebra1a" .
24+
Require Export "algebra1b" .
2025

2126

2227
(** To upstream files *)

hlevel2/algebra1d.v

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616
Add LoadPath "../hlevel1" .
1717
Add LoadPath "../Generalities".
1818

19-
Require Export algebra1c .
19+
Require Export "uuu".
20+
Require Export "uu0" .
21+
Require Export "hProp" .
22+
Require Export "hSet" .
23+
Require Export "algebra1a" .
24+
Require Export "algebra1b" .
25+
Require Export "algebra1c" .
2026

2127

2228
(** To upstream files *)

hlevel2/finitesets.v

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
2121
Add LoadPath "../hlevel1" .
2222
Add LoadPath "../Generalities".
2323

24-
Require Export stnfsets .
24+
Require Export "uuu".
25+
Require Export "uu0" .
26+
Require Export "hProp" .
27+
Require Export "hSet" .
28+
Require Export "algebra1a" .
29+
Require Export "algebra1b" .
30+
Require Export "algebra1c" .
31+
Require Export "algebra1d" .
32+
Require Export "hnat" .
33+
Require Export "stnfsets" .
2534

2635

2736

hlevel2/hSet.v

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
2020
Add LoadPath "../hlevel1" .
2121
Add LoadPath "../Generalities".
2222

23-
Require Export hProp .
23+
24+
Require Export "uuu".
25+
Require Export "uu0" .
26+
Require Export "hProp" .
2427

2528

2629

hlevel2/hnat.v

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,14 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
2020
Add LoadPath "../hlevel1" .
2121
Add LoadPath "../Generalities".
2222

23-
Require Export algebra1d .
23+
Require Export "uuu".
24+
Require Export "uu0" .
25+
Require Export "hProp" .
26+
Require Export "hSet" .
27+
Require Export "algebra1a" .
28+
Require Export "algebra1b" .
29+
Require Export "algebra1c" .
30+
Require Export "algebra1d" .
2431

2532
(** To up-stream files *)
2633

hlevel2/hq.v

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,16 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1919
Add LoadPath "../hlevel1" .
2020
Add LoadPath "../Generalities".
2121

22-
Require Export hz .
22+
Require Export "uuu".
23+
Require Export "uu0" .
24+
Require Export "hProp" .
25+
Require Export "hSet" .
26+
Require Export "algebra1a" .
27+
Require Export "algebra1b" .
28+
Require Export "algebra1c" .
29+
Require Export "algebra1d" .
30+
Require Export "hnat" .
31+
Require Export "hz" .
2332

2433
Opaque hz .
2534

hlevel2/hz.v

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1919
Add LoadPath "../hlevel1" .
2020
Add LoadPath "../Generalities".
2121

22-
Require Export hnat .
22+
Require Export "uuu".
23+
Require Export "uu0" .
24+
Require Export "hProp" .
25+
Require Export "hSet" .
26+
Require Export "algebra1a" .
27+
Require Export "algebra1b" .
28+
Require Export "algebra1c" .
29+
Require Export "algebra1d" .
30+
Require Export "hnat" .
2331

2432

2533

hlevel2/stnfsets.v

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
1818
Add LoadPath "../hlevel1" .
1919
Add LoadPath "../Generalities".
2020

21-
Require Export hnat .
21+
Require Export "uuu".
22+
Require Export "uu0" .
23+
Require Export "hProp" .
24+
Require Export "hSet" .
25+
Require Export "algebra1a" .
26+
Require Export "algebra1b" .
27+
Require Export "algebra1c" .
28+
Require Export "algebra1d" .
29+
Require Export "hnat" .
2230

2331

2432
(* To up-stream files *)

0 commit comments

Comments
 (0)