This commit is contained in:
Thomas Baruchel 2023-01-11 16:55:50 +01:00
parent a08195c552
commit 6d85df3fbc
2 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,7 @@ all: $(objects)
# Recipe for converting a Coq file into HTML using coqdoc
$(output)/%.html: $(source)/%.v
coqc $<
cd $(source); coqc `basename $<`
coqdoc --html --no-index -d ./html/ $<
scp $@ baruchel@sdf.org:public_html/coqbooks/

View File

@ -604,3 +604,7 @@ Proof.
rewrite <- app_assoc. reflexivity.
generalize H2. apply IHj. easy.
Qed.