And fix the Makefile to install things in the proper place.
[mdwtools] / Makefile.m4
CommitLineData
86f6a31e 1## -*-makefile-*-
2##
86f6a31e 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.
e8e9e5d8 16##
86f6a31e 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.
e8e9e5d8 21##
86f6a31e 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
86f6a31e 26AUTOMAKE_OPTIONS = foreign
27
65bf31fc
MW
28pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE}
29pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE}
86f6a31e 30
950ff97f 31define(`addsuffix', `patsubst(`$1', `\>', `$2')')
86f6a31e 32define(`BASE', `\
83b69571 33 at centre cmtt colour crypto doafter exercise footnote mdwkey \
e8f3554e 34 mdwlist mdwmath mdwref mdwtab mdwthm poetry slowbox sverb syntax')
86f6a31e 35
8c890f24 36AUX = mdwtools.tex gpl.tex
950ff97f 37SRC = addsuffix(BASE, `.dtx')
38DVI = addsuffix(BASE, `.dvi') mdwtools.dvi
83b69571 39PS = addsuffix(BASE, `.ps') mdwtools.ps
86f6a31e 40OBJ = \
41 at.sty \
950ff97f 42 cmtt.sty mttcmtt.fd mttenc.def \
83b69571 43 colour.sty \
86f6a31e 44 crypto.sty \
45 doafter.sty \
46 doafter.tex \
47 exercise.sty \
48 footnote.sty \
83b69571 49 mdwkey.sty \
86f6a31e 50 mdwlist.sty \
51 mdwmath.sty \
e8f3554e 52 mdwref.sty \
83b69571 53 mdwtab.sty mathenv.sty mtcolour.sty mtcolor.sty \
86f6a31e 54 mdwthm.sty mdwmargin.thm \
55 poetry.sty \
83b69571 56 slowbox.sty \
57 sverb.sty svcolor.sty svcolour.sty svsplit.sty \
86f6a31e 58 syntax.sty
59
8c890f24 60pkglatex_DATA = $(OBJ) mdwtools.tex
83b69571 61pkgdoc_DATA = $(DVI) $(PS)
86f6a31e 62
83b69571 63SUFFIXES = .dtx .tex .dvi .ps
86f6a31e 64define(`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
83b69571 69.dtx.dvi:
86f6a31e 70 run_latex
83b69571 71.tex.dvi:
86f6a31e 72 run_latex
83b69571 73.dvi.ps:
74 dvips -e0 -o $@ $<
75
76$(DVI): gpl.tex $(OBJ) mdwtools.tex
86f6a31e 77
86f6a31e 78$(OBJ): $(SRC) mdwtools.ins
79 tex mdwtools.ins
80
83b69571 81EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) $(PS) mdwtools.ins Makefile.m4
8c890f24 82
86f6a31e 83MAINTAINERCLEANFILES = $(OBJ) $(DVI)
84CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans
85
86Makefile.am: Makefile.m4
83b69571 87 m4 $(srcdir)/Makefile.m4 >Makefile.am.new
88 mv Makefile.am.new $(srcdir)/Makefile.am
86f6a31e 89
90.PHONY: dvi
91
92##----- That's all, folks ---------------------------------------------------