Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cpdt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
research
cpdt
Commits
6174adf9
Commit
6174adf9
authored
Aug 25, 2011
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started revising Intro
parent
ea0dc894
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
33 deletions
+46
-33
Makefile
Makefile
+9
-17
BackMatter.v
src/BackMatter.v
+8
-0
Intro.v
src/Intro.v
+29
-16
No files found.
Makefile
View file @
6174adf9
...
...
@@ -9,7 +9,7 @@ VS := $(MODULES:%=src/%.v)
VS_DOC
:=
$
(
MODULES_DOC:%
=
%.v
)
TEMPLATES
:=
$
(
MODULES_CODE:%
=
templates/%.v
)
.PHONY
:
coq clean doc
dvi
html templates install cpdt.tgz
.PHONY
:
coq clean doc html templates install cpdt.tgz
coq
:
Makefile.coq
$(MAKE)
-f
Makefile.coq
...
...
@@ -24,28 +24,23 @@ clean:: Makefile.coq
$(MAKE)
-f
Makefile.coq clean
rm
-f
Makefile.coq .depend cpdt.tgz
\
latex/
*
.sty latex/cpdt.
*
templates/
*
.v
rm
-f
*
.aux
*
.
dvi
*
.
log
rm
-f
*
.aux
*
.log
doc
:
latex/cpdt.
dvi latex/cpdt.
pdf html
doc
:
latex/cpdt.pdf html
latex/cpdt.tex
:
Makefile $(VS)
cd
src
;
coqdoc
--interpolate
--latex
-s
$(VS_DOC)
\
-p
"
\u
sepackage{url,amsmath,amssymb}"
\
-p
"
\t
itle{Certified Programming with Dependent Types}"
\
-p
"
\a
uthor{Adam Chlipala}"
\
latex/cpdt.tex
:
Makefile $(VS) src/BackMatter.v latex/cpdt.bib
cd
src
;
coqdoc
--interpolate
--latex
-s
$(VS_DOC)
BackMatter.v
\
-p
"
\u
sepackage{url}"
\
-p
"
\i
ffalse"
\
-o
../latex/cpdt.tex
latex/%.tex
:
src/%.v src/%.glob
cd
src
;
coqdoc
--interpolate
--latex
\
-p
"
\u
sepackage{url
,amsmath,amssymb
}"
\
-p
"
\u
sepackage{url}"
\
$*
.v
-o
../latex/
$*
.tex
latex/%.dvi
:
latex/%.tex
cd
latex
;
latex
$*
;
latex
$*
latex/%.pdf
:
latex/%.dvi
cd
latex
;
pdflatex
$*
;
pdflatex
$*
latex/%.pdf
:
latex/%.tex latex/cpdt.bib
cd
latex
;
pdflatex
$*
;
pdflatex
$*
;
bibtex
$*
;
makeindex
$*
;
pdflatex
$*
;
pdflatex
$*
html
:
Makefile $(VS) src/toc.html
mkdir
-p
html
...
...
@@ -53,9 +48,6 @@ html: Makefile $(VS) src/toc.html
-d
../html
cp
src/toc.html html/
dvi
:
xdvi latex/cpdt
templates
:
$(TEMPLATES)
templates/%.v
:
src/%.v tools/make_template.ml
...
...
src/BackMatter.v
0 → 100644
View file @
6174adf9
(
**
%
\
clearpage
\
addcontentsline
{
toc
}{
chapter
}{
Bibliography
}
\
bibliographystyle
{
plain
}
\
bibliography
{
cpdt
}
\
clearpage
\
addcontentsline
{
toc
}{
chapter
}{
Index
}
\
printindex
%
*
)
src/Intro.v
View file @
6174adf9
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment