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