.mdw-build.conf: Don't try `vpath' builds with this package.
[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 pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE}
27 pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE}
28
29 define(`addsuffix', `patsubst(`$1', `\>', `$2')')
30 define(`BASE', `strayman')
31
32 AUX = gpl.tex strayman.cls
33 SRC = addsuffix(BASE, `.dtx')
34 DVI = addsuffix(BASE, `.dvi')
35 PS = addsuffix(BASE, `.ps')
36 PDF = addsuffix(BASE, `.pdf')
37 OBJ = \
38 strayman.8pt \
39 strayman.9pt \
40 strayman.10pt \
41 strayman.11pt \
42 strayman.12pt \
43 strayman.text \
44 strayman.cls
45
46 pkglatex_DATA = $(OBJ)
47 pkgdoc_DATA = $(DVI) $(PS) $(PDF)
48
49 SUFFIXES = .dtx .tex .dvi .ps .pdf
50 define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
51 latex "\def\indexing{y} \nonstopmode \input $<"
52 makeindex -s gind.ist $`'*.idx
53 latex "\def\indexing{n} \nonstopmode \input $<"')
54
55 $(DVI): $(AUX)
56 .dtx.dvi:; run_latex
57 .dvi.ps:; dvips $<
58 .ps.pdf:; ps2pdf $< $@
59
60 $(OBJ): $(SRC) strayman.ins
61 tex strayman.ins
62
63 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) strayman.ins Makefile.m4
64
65 MAINTAINERCLEANFILES = $(OBJ) $(DVI)
66 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.ps *.pdf
67
68 dist-hook::
69 echo $(VERSION) >$(distdir)/RELEASE
70 EXTRA_DIST += auto-version
71
72 Makefile.am: Makefile.m4
73 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
74
75 .PHONY: dvi
76
77 EXTRA_DIST += debian/changelog debian/control debian/copyright debian/compat
78 EXTRA_DIST += debian/rules
79
80 ##----- That's all, folks ---------------------------------------------------