bindist fixes
[ghc-hetmet.git] / docs / ext-core / Makefile
1 TOP = ../..
2
3 #       General makefile for Latex stuff
4
5 LATEX=latex \\nonstopmode \\input
6 BIBTEX=bibtex
7
8 dvi: core.dvi
9 ps: core.ps
10
11 core.dvi:       core.tex
12                 -$(LATEX) core.tex
13                 $(BIBTEX) core
14                 -$(LATEX) core.tex
15                 -$(LATEX) core.tex
16
17 ######## General rules
18 .SUFFIXES:
19 .PRECIOUS: %.tex %.ps %.bbl
20
21
22 %.ps: %.dvi
23         dvips -f < $< > $@
24
25 clean:
26         $(RM) *.aux *.log
27
28 distclean: clean
29         $(RM) prims.tex *.dvi *.ps *.bbl *.blg *.gz
30
31 maintainer-clean: distclean
32
33 include $(TOP)/mk/bindist.mk
34
35 # dummy targets
36 all:
37 boot:
38 install:
39 install-docs:
40 html:
41 chm:
42 HxS:
43
44 # End of file