File: Makefile

package info (click to toggle)
hol88 2.02.19940316-28
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 65,924 kB
  • ctags: 21,595
  • sloc: ml: 199,939; ansic: 9,666; sh: 7,118; makefile: 6,075; lisp: 2,747; yacc: 894; sed: 201; cpp: 87; awk: 5
file content (79 lines) | stat: -rw-r--r-- 3,578 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# =====================================================================
# Makefile for the pred_sets library documentation 
# =====================================================================

# ---------------------------------------------------------------------
# Pathname to the pred_sets help files
# ---------------------------------------------------------------------
Help=../help

# ---------------------------------------------------------------------
# Pathname to the doc-to-tex script and doc-to-tex.sed file 
# ---------------------------------------------------------------------
DOCTOTEX=../../../Manual/Reference/bin/doc-to-tex
DOCTOTEXSED=../../../Manual/Reference/bin/doc-to-tex.sed

# ---------------------------------------------------------------------
# Pathname to the makeindex script
# ---------------------------------------------------------------------
MAKEINDEX=../../../Manual/LaTeX/makeindex ../../../
default:
	@echo "INSTRUCTIONS: Type \"make all\" to make the documentation"

# ---------------------------------------------------------------------
# Remove all trace of previous LaTeX jobs
# ---------------------------------------------------------------------
clean:
	rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
	@printf '\\begin{theindex}' > index.tex
	@printf '\\mbox{}' >> index.tex
	@printf '\\end{theindex}' >> index.tex

tex: theorems ids
	@echo "TeX files made"

ids:
	@printf '\\chapter{ML Functions in the Library}'>entries.tex
	@printf '\\label{entries}'>>entries.tex
	@printf '\\input{entries-intro}' >> entries.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex

theorems:
	@printf '\\chapter{Pre-proved Theorems}' > theorems.tex
	@printf '\\input{theorems-intro}' >> theorems.tex
	@printf '\\section{Membership, equality, and set specifications}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/mem theorems.tex
	@printf '\\section{The empty and universal sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/emuniv theorems.tex
	@printf '\\section{Set inclusion}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/subs theorems.tex
	@printf '\\section{Intersection and union}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/unin theorems.tex
	@printf '\\section{Set difference}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/diff theorems.tex
	@printf '\\section{Disjoint sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/disj theorems.tex
	@printf '\\section{Insertion and deletion of an element}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/insdel theorems.tex
	@printf '\\section{The {\\tt CHOICE} and {\\tt REST} functions}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/chre theorems.tex
	@printf '\\section{Image of a function on a set}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/image theorems.tex
	@printf '\\section{Mappings between sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fun theorems.tex
	@printf '\\section{Singleton sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sing theorems.tex
	@printf '\\section{Finite and infinite sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fin theorems.tex
	@printf '\\section{Cardinality of sets}'>>theorems.tex
	/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/card theorems.tex

index: 
	${MAKEINDEX} pred_sets.idx index.tex

pred_sets: 
	latex pred_sets.tex 

all: 
	make clean; make tex; make pred_sets; make index; make pred_sets