strayman: Make URLs blue too.
[strayman] / Makefile.m4
CommitLineData
1ffa9044 1## -*-makefile-*-
2##
e8c85bbe 3## $Id: Makefile.m4,v 1.2 2002/02/24 12:45:56 mdw Exp $
1ffa9044 4##
5## Build system for strayman
6##
7## (c) 2002 Mark Wooding
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of the Straylight Manual LaTeX document class.
13##
14## strayman 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## strayman 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 strayman; if not, write to the Free Software Foundation,
26## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
1ffa9044 28AUTOMAKE_OPTIONS = foreign
29
46df6f4a
MW
30pkglatexdir = ${texmfpath}/tex/latex/${PACKAGE}
31pkgdocdir = ${texmfpath}/doc/latex/${PACKAGE}
1ffa9044 32
33define(`addsuffix', `patsubst(`$1', `\>', `$2')')
34define(`BASE', `strayman')
35
36AUX = gpl.tex strayman.cls
37SRC = addsuffix(BASE, `.dtx')
38DVI = addsuffix(BASE, `.dvi')
39OBJ = \
40 strayman.8pt \
41 strayman.9pt \
42 strayman.10pt \
43 strayman.11pt \
44 strayman.12pt \
45 strayman.text \
46 strayman.cls
47
48pkglatex_DATA = $(OBJ)
49pkgdoc_DATA = $(DVI)
50
51SUFFIXES = .dtx .tex .dvi
52define(`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
26ba2c6d
MW
57$(DVI): $(AUX)
58.dtx.dvi:
1ffa9044 59 run_latex
60
61$(OBJ): $(SRC) strayman.ins
62 tex strayman.ins
63
64EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) strayman.ins Makefile.m4
65
66MAINTAINERCLEANFILES = $(OBJ) $(DVI)
67CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans
68
69Makefile.am: Makefile.m4
70 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
71
72.PHONY: dvi
73
74##----- That's all, folks ---------------------------------------------------