strayman.dtx: Don't define `\frontmatter', etc., in article mode.
[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', `rm -rf t.$`'@/ && mkdir t.$`'@/ && \
51 cd t.$`'@/ && \
52 TEXINPUTS=..:$$TEXINPUTS && export TEXINPUTS && \
53 $1 "\def\indexing{n} \nonstopmode \input $<" && \
54 $1 "\def\indexing{y} \nonstopmode \input $<" && \
55 makeindex -s gind.ist $`'*.idx && \
56 $1 "\def\indexing{n} \nonstopmode \input $<" && \
57 mv $`'@ ../ && cd ../ && rm -rf t.$`'@/')
58
59 $(DVI) $(PDF): $(OBJ) $(AUX)
60 .dtx.dvi:; run_latex(`latex')
61 .dtx.pdf:; run_latex(`pdflatex')
62 .dvi.ps:; dvips $<
63 clean-local::; rm -rf t.*/
64
65 $(OBJ): $(SRC) strayman.ins
66 tex strayman.ins
67
68 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) strayman.ins Makefile.m4
69
70 MAINTAINERCLEANFILES = $(OBJ) $(DVI)
71 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.ps *.pdf
72
73 dist-hook::
74 echo $(VERSION) >$(distdir)/RELEASE
75 EXTRA_DIST += auto-version
76
77 Makefile.am: Makefile.m4
78 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
79
80 .PHONY: dvi
81
82 EXTRA_DIST += debian/changelog debian/control debian/copyright debian/compat
83 EXTRA_DIST += debian/rules
84
85 ##----- That's all, folks ---------------------------------------------------