Whitespace fixups.
[strayman] / Makefile.m4
1 ## -*-m4-*-
2 ##
3 ## Build system for strayman
4 ##
5 ## (c) 2002 Mark Wooding
6 ##
7
8 ##----- Licensing notice ----------------------------------------------------
9 ##
10 ## This file is part of the Straylight Manual LaTeX document class.
11 ##
12 ## strayman 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 ## strayman 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 strayman; 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', `strayman')
33
34 AUX = gpl.tex strayman.cls
35 SRC = addsuffix(BASE, `.dtx')
36 DVI = addsuffix(BASE, `.dvi')
37 PS = addsuffix(BASE, `.ps')
38 PDF = addsuffix(BASE, `.pdf')
39 OBJ = \
40 strayman.8pt \
41 strayman.9pt \
42 strayman.10pt \
43 strayman.11pt \
44 strayman.12pt \
45 strayman.text \
46 strayman.cls
47
48 pkglatex_DATA = $(OBJ)
49 pkgdoc_DATA = $(DVI) $(PS) $(PDF)
50
51 SUFFIXES = .dtx .tex .dvi .ps .pdf
52 define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
53 latex "\def\indexing{y} \nonstopmode \input $<"
54 makeindex -s gind.ist $`'*.idx
55 latex "\def\indexing{n} \nonstopmode \input $<"')
56
57 $(DVI): $(AUX)
58 .dtx.dvi:; run_latex
59 .dvi.ps:; dvips $<
60 .ps.pdf:; ps2pdf $< $@
61
62 $(OBJ): $(SRC) strayman.ins
63 tex strayman.ins
64
65 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) strayman.ins Makefile.m4
66
67 MAINTAINERCLEANFILES = $(OBJ) $(DVI)
68 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.ps *.pdf
69
70 Makefile.am: Makefile.m4
71 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
72
73 .PHONY: dvi
74
75 ##----- That's all, folks ---------------------------------------------------