Whitespace fixups.
[mdwfonts] / Makefile.m4
... / ...
CommitLineData
1## -*-m4-*-
2##
3## Build system for mdwfonts
4##
5## (c) 2002 Mark Wooding
6##
7
8##----- Licensing notice ----------------------------------------------------
9##
10## This file is part of the mdwfonts font configuration system.
11##
12## mdwfonts 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## mdwfonts 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 mdwfonts; if not, write to the Free Software Foundation,
24## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26AUTOMAKE_OPTIONS = foreign
27
28texmfpath = @texmfpath@
29pkglatexdir = ${texmfpath}/tex/latex/${PACKAGE}
30pkgdocdir = ${texmfpath}/doc/latex/${PACKAGE}
31pkgtfmdir = ${texmfpath}/fonts/tfm/${PACKAGE}
32pkgvfdir = ${texmfpath}/fonts/vf/${PACKAGE}
33pkgetxdir = ${texmfpath}/tex/fontinst/${PACKAGE}
34pkmapdir = ${texmfpath}/dvips/${PACKAGE}
35
36FONTINST = @FONTINST@
37
38define(`addsuffix', `patsubst(`$1', `\>', `$2')')
39define(`BASE', `mdwfonts')
40define(`TFMBASE', `\
41 pcrb8rn pcrbo8rn pcrr8rn pcrro8rn')
42define(`VFBASE', `\
43 pcrb7tn pcrb8tn pcrbc7tn pcrbc8tn pcrbo7tn pcrbo8tn pcrr7tn pcrr8tn \
44 pcrrc7tn pcrrc8tn pcrro7tn pcrro8tn zpplcmr zpplcmrm')
45
46AUX = gpl.tex
47SRC = addsuffix(BASE, `.dtx')
48DVI = addsuffix(BASE, `.dvi')
49PS = addsuffix(BASE, `.ps')
50PDF = addsuffix(BASE, `.pdf')
51ETX = ot1tt.etx ot1ctt.etx
52INS = mdwfonts.sty mdwfonts.tex mttpcr.fd
53MAP = mdwfonts.map
54FD = omlpplcm.fd ot1pplcm.fd
55PL = addsuffix(TFMBASE, `.pl')
56VPL = addsuffix(VFBASE, `.vpl')
57TFM = addsuffix(TFMBASE, `.tfm') addsuffix(VFBASE, `.tfm')
58VF = addsuffix(VFBASE, `.vf')
59
60pkglatex_DATA = $(INS) $(FD)
61pkgdoc_DATA = $(DVI) $(PS) $(PDF)
62pkgtfm_DATA = $(TFM)
63pkgvf_DATA = $(VF)
64pkgetx_DATA = $(ETX)
65pkmap_DATA = $(MAP)
66
67SUFFIXES = .dtx .dvi .vf .tfm .pl .vpl .ps .pdf
68define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
69 latex "\def\indexing{y} \nonstopmode \input $<"
70 makeindex -s gind.ist $`'*.idx
71 latex "\def\indexing{n} \nonstopmode \input $<"')
72
73$(DVI): $(AUX) $(INS)
74.dtx.dvi: run_latex
75.dvi.ps:; dvips $<
76.ps.pdf:; ps2pdf $< $@
77.vpl.tfm:; vptovf $<
78.pl.tfm:; pltotf $<
79.vpl.vf:; vptovf $<
80
81$(ETX) $(INS): $(SRC) mdwfonts.ins
82 tex "\nonstopmode \input mdwfonts.ins"
83$(FD) $(VF) $(PL) $(VPL): mdwfonts.tex $(ETX)
84 $(FONTINST) "\nonstopmode \input mdwfonts.tex"
85
86EXTRA_DIST = \
87 $(SRC) $(AUX) $(INS) $(ETX) $(FD) $(TFM) $(VF) $(PL) $(VPL) $(DVI) \
88 mdwfonts.ins Makefile.m4
89
90MAINTAINERCLEANFILES = $(INS) $(ETX) $(TFM) $(VF) $(DVI) *.fd
91CLEANFILES = \
92 *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.vpl \
93 p*.pl p*.mtx c*.mtx *.ps *.pdf
94
95Makefile.am: Makefile.m4
96 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
97
98.PHONY: dvi
99
100##----- That's all, folks ---------------------------------------------------