Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ilikさんのcompletenessコードがコンパイルとおるようになったので参考のためimport #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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