blob: 561b71bd043d7aeda414bf12c4da10d6e4122772 (
plain)
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
|
# General makefile for Latex stuff
LATEX=latex \\nonstopmode \\input
BIBTEX=bibtex
dvi: core.dvi
ps: core.ps
core.dvi: core.tex
-$(LATEX) core.tex
$(BIBTEX) core
-$(LATEX) core.tex
-$(LATEX) core.tex
######## General rules
.SUFFIXES:
.PRECIOUS: %.tex %.ps %.bbl
%.ps: %.dvi
dvips -f < $< > $@
clean:
$(RM) *.aux *.log
distclean: clean
$(RM) prims.tex *.dvi *.ps *.bbl *.blg *.gz
maintainer-clean: distclean
# dummy targets
all:
boot:
install:
install-docs:
html:
chm:
HxS:
# End of file
|