doc-src/TutorialI/Makefile
author huffman
Thu, 08 Dec 2011 13:25:40 +0100
changeset 45786 3f07a7a91180
parent 42637 381fdcab0f36
child 48522 708278fc2dff
permissions -rw-r--r--
reinstate old functions cfst and csnd as abbreviations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8743
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     1
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     2
## targets
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     3
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     4
default: dvi
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     5
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     6
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     7
## dependencies
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     8
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
     9
include ../Makefile.in
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    10
11430
c51de60e26cf SEDINDEX = ./isa-index;
wenzelm
parents: 11428
diff changeset
    11
SEDINDEX = ./isa-index
11400
ddcfdc38090d isa-index replaces ../sedindex: knows about \\isa
paulson
parents: 9695
diff changeset
    12
8743
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    13
NAME = tutorial
26913
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    14
FILES = tutorial.tex basics.tex fp.tex appendix.tex			\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    15
	Advanced/advanced.tex CTL/ctl.tex Inductive/inductive.tex	\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    16
	Inductive/document/AB.tex Inductive/document/Advanced.tex	\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    17
	Inductive/document/Even.tex Inductive/document/Mutual.tex	\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    18
	Inductive/document/Star.tex Protocol/protocol.tex		\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    19
	Protocol/document/Event.tex Protocol/document/Message.tex	\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    20
	Protocol/document/Public.tex Protocol/document/NS_Public.tex	\
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    21
	Rules/rules.tex Sets/sets.tex Types/numerics.tex		\
31676
4ee7a8af1903 more precise dependencies
haftmann
parents: 26913
diff changeset
    22
	Types/types.tex Types/document/Overloading.tex \
4ee7a8af1903 more precise dependencies
haftmann
parents: 26913
diff changeset
    23
	Types/document/Axioms.tex Documents/documents.tex Misc/document/appendix.tex ../iman.sty	\
42511
bf89455ccf9d eliminated copies of isabelle style files;
wenzelm
parents: 31676
diff changeset
    24
	../ttbox.sty ../extra.sty ../../lib/texinputs/isabelle.sty ../../lib/texinputs/isabellesym.sty	\
26913
67040326ab7a use Isabelle sty files from Doc/;
wenzelm
parents: 23927
diff changeset
    25
	../pdfsetup.sty
8743
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    26
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    27
dvi: $(NAME).dvi
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    28
12677
73c070d5c031 dependencies for "typedef" image;
wenzelm
parents: 12676
diff changeset
    29
$(NAME).dvi: $(FILES) isabelle_hol.eps typedef.ps
8743
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    30
	$(LATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    31
	$(BIBTEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    32
	$(LATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    33
	$(LATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    34
	$(SEDINDEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    35
	$(LATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    36
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    37
pdf: $(NAME).pdf
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    38
12677
73c070d5c031 dependencies for "typedef" image;
wenzelm
parents: 12676
diff changeset
    39
$(NAME).pdf: $(FILES) isabelle_hol.pdf typedef.pdf
8743
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    40
	$(PDFLATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    41
	$(BIBTEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    42
	$(PDFLATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    43
	$(PDFLATEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    44
	$(SEDINDEX) $(NAME)
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    45
	$(FIXBOOKMARKS) $(NAME).out
3253c6046d57 I wonder if that's all?
nipkow
parents:
diff changeset
    46
	$(PDFLATEX) $(NAME)
12672
wenzelm
parents: 12654
diff changeset
    47
	$(FIXBOOKMARKS) $(NAME).out