Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions boolean_completeness/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

COQC=coqc
COQDOC=coqdoc
DVIPDF=dvipdf

all: main doc
coqc lists.v filters.v classcomp.v

main: pairing
coqc lists.v filters.v classcomp.v

pairing: force_look
cd pairing; coqc extEqualNat.v misc.v primRec.v cPair.v

doc:
$(COQDOC) -d html -g --utf8 --toc --no-index *.v pairing/*.v

doc-pdf:
$(COQDOC) -p "\usepackage{hyperref}\hypersetup{colorlinks=true,linkcolor=red}" -o boolean_completeness.dvi --dvi -toc -g *.v pairing/*.v
$(DVIPDF) boolean_completeness.dvi

clean:
rm -f *.vo *.glob pairing/*.vo pairing/*.glob html/pairing*.html html/classcomp.html html/filters.html html/lists.html html/toc.html html/coqdoc.css *.dvi *.pdf

force_look:
true
Loading