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