And fix the Makefile to install things in the proper place.
[mdwtools] / Makefile.m4
1 ## -*-makefile-*-
2 ##
3 ## Build system for mdwtools
4 ##
5 ## (c) 2002 Mark Wooding
6 ##
7
8 ##----- Licensing notice ----------------------------------------------------
9 ##
10 ## This file is part of the mdwtools LaTeX package collection.
11 ##
12 ## mdwtools is free software; you can redistribute it and/or modify
13 ## it under the terms of the GNU General Public License as published by
14 ## the Free Software Foundation; either version 2 of the License, or
15 ## (at your option) any later version.
16 ##
17 ## mdwtools is distributed in the hope that it will be useful,
18 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ## GNU General Public License for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License
23 ## along with mdwtools; if not, write to the Free Software Foundation,
24 ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 AUTOMAKE_OPTIONS = foreign
27
28 pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE}
29 pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE}
30
31 define(`addsuffix', `patsubst(`$1', `\>', `$2')')
32 define(`BASE', `\
33 at centre cmtt colour crypto doafter exercise footnote mdwkey \
34 mdwlist mdwmath mdwref mdwtab mdwthm poetry slowbox sverb syntax')
35
36 AUX = mdwtools.tex gpl.tex
37 SRC = addsuffix(BASE, `.dtx')
38 DVI = addsuffix(BASE, `.dvi') mdwtools.dvi
39 PS = addsuffix(BASE, `.ps') mdwtools.ps
40 OBJ = \
41 at.sty \
42 cmtt.sty mttcmtt.fd mttenc.def \
43 colour.sty \
44 crypto.sty \
45 doafter.sty \
46 doafter.tex \
47 exercise.sty \
48 footnote.sty \
49 mdwkey.sty \
50 mdwlist.sty \
51 mdwmath.sty \
52 mdwref.sty \
53 mdwtab.sty mathenv.sty mtcolour.sty mtcolor.sty \
54 mdwthm.sty mdwmargin.thm \
55 poetry.sty \
56 slowbox.sty \
57 sverb.sty svcolor.sty svcolour.sty svsplit.sty \
58 syntax.sty
59
60 pkglatex_DATA = $(OBJ) mdwtools.tex
61 pkgdoc_DATA = $(DVI) $(PS)
62
63 SUFFIXES = .dtx .tex .dvi .ps
64 define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
65 latex "\def\indexing{y} \nonstopmode \input $<"
66 makeindex -s gind.ist $`'*.idx
67 latex "\def\indexing{n} \nonstopmode \input $<"')
68
69 .dtx.dvi:
70 run_latex
71 .tex.dvi:
72 run_latex
73 .dvi.ps:
74 dvips -e0 -o $@ $<
75
76 $(DVI): gpl.tex $(OBJ) mdwtools.tex
77
78 $(OBJ): $(SRC) mdwtools.ins
79 tex mdwtools.ins
80
81 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) $(PS) mdwtools.ins Makefile.m4
82
83 MAINTAINERCLEANFILES = $(OBJ) $(DVI)
84 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans
85
86 Makefile.am: Makefile.m4
87 m4 $(srcdir)/Makefile.m4 >Makefile.am.new
88 mv Makefile.am.new $(srcdir)/Makefile.am
89
90 .PHONY: dvi
91
92 ##----- That's all, folks ---------------------------------------------------