Publishing to web

This commit is contained in:
Adam Chlipala 2016-02-02 13:53:00 -05:00
parent 126f9a188d
commit 7e99e09b81
3 changed files with 43 additions and 1 deletions

1
.gitignore vendored
View file

@ -13,3 +13,4 @@ Makefile.coq
*.glob
*.v.d
*.vo
frap.tgz

View file

@ -1,4 +1,4 @@
.PHONY: all coq
.PHONY: all coq install
all: frap.pdf coq
@ -18,3 +18,13 @@ Makefile.coq: Makefile _CoqProject *.v
clean:: Makefile.coq
$(MAKE) -f Makefile.coq clean
rm -f Makefile.coq
frap.tgz: *.v
git archive --format=tar.gz HEAD >frap.tgz
WHERE=chlipala.net:sites/chlipala/adam/frap/
install: index.html frap.pdf frap.tgz
rsync frap.pdf $(WHERE)
rsync frap.tgz $(WHERE)
rsync index.html $(WHERE)

31
index.html Normal file
View file

@ -0,0 +1,31 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/style.css">
<title>Formal Reasoning About Programs</title>
</head><body>
<h1>Formal Reasoning About Programs</h1>
<h2><a href="http://adam.chlipala.net/">Adam Chlipala</a></h2>
<div class="summary" style="overflow: hidden">
<p>This is the web site for the early stages of a book introducing both machine-checked proof with <a href="http://coq.inria.fr/">the Coq proof assistant</a> and approaches to formal reasoning about program correctness.</p>
<h2>Grab a Draft</h2>
<ul>
<li><a href="https://github.com/achlipala/frap">Source on GitHub</a></li>
<li><a href="frap.pdf">Quasi-latest PDF draft</a></li>
<li><a href="frap.tgz">Quasi-latest source-code tarball</a></li>
</ul>
</div>
<div class="project">
<h2>Use in classes</h2>
<h3>Classes where FRAP is/was the primary text</h3>
<ul>
<li>6.887 at MIT <a href="https://frap.csail.mit.edu/">(Spring 2016)</a></li>
</ul>
</div>
</body></html>