build: Use ACLTX_TEXMF_PATH for installation.
[mdwfonts] / Makefile.m4
1 ## -*-makefile-*-
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
26 AUTOMAKE_OPTIONS = foreign
27
28 texmfpath = @texmfpath@
29 pkglatexdir = ${texmfpath}/tex/latex/${PACKAGE}
30 pkgdocdir = ${texmfpath}/doc/latex/${PACKAGE}
31 pkgtfmdir = ${texmfpath}/fonts/tfm/${PACKAGE}
32 pkgvfdir = ${texmfpath}/fonts/vf/${PACKAGE}
33 pkgetxdir = ${texmfpath}/tex/fontinst/${PACKAGE}
34 pkmapdir = ${texmfpath}/dvips/${PACKAGE}
35
36 FONTINST = @FONTINST@
37
38 define(`addsuffix', `patsubst(`$1', `\>', `$2')')
39 define(`BASE', `mdwfonts')
40 define(`TFMBASE', `\
41 pcrb8rn pcrbo8rn pcrr8rn pcrro8rn')
42 define(`VFBASE', `\
43 pcrb7tn pcrb8tn pcrbc7tn pcrbc8tn pcrbo7tn pcrbo8tn pcrr7tn pcrr8tn \
44 pcrrc7tn pcrrc8tn pcrro7tn pcrro8tn zpplcmr zpplcmrm')
45
46 AUX = gpl.tex
47 SRC = addsuffix(BASE, `.dtx')
48 DVI = addsuffix(BASE, `.dvi')
49 ETX = ot1tt.etx ot1ctt.etx
50 INS = mdwfonts.sty mdwfonts.tex mttpcr.fd
51 MAP = mdwfonts.map
52 FD = omlpplcm.fd ot1pplcm.fd
53 PL = addsuffix(TFMBASE, `.pl')
54 VPL = addsuffix(VFBASE, `.vpl')
55 TFM = addsuffix(TFMBASE, `.tfm') addsuffix(VFBASE, `.tfm')
56 VF = addsuffix(VFBASE, `.vf')
57
58 pkglatex_DATA = $(INS) $(FD)
59 pkgdoc_DATA = $(DVI)
60 pkgtfm_DATA = $(TFM)
61 pkgvf_DATA = $(VF)
62 pkgetx_DATA = $(ETX)
63 pkmap_DATA = $(MAP)
64
65 SUFFIXES = .dtx .dvi .vf .tfm .pl .vpl
66 define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
67 latex "\def\indexing{y} \nonstopmode \input $<"
68 makeindex -s gind.ist $`'*.idx
69 latex "\def\indexing{n} \nonstopmode \input $<"')
70
71 $(DVI): $(AUX) $(INS)
72 .dtx.dvi: run_latex
73 .vpl.tfm:; vptovf $<
74 .pl.tfm:; pltotf $<
75 .vpl.vf:; vptovf $<
76
77 $(ETX) $(INS): $(SRC) mdwfonts.ins
78 tex "\nonstopmode \input mdwfonts.ins"
79 $(FD) $(VF) $(PL) $(VPL): mdwfonts.tex $(ETX)
80 $(FONTINST) "\nonstopmode \input mdwfonts.tex"
81
82 EXTRA_DIST = \
83 $(SRC) $(AUX) $(INS) $(ETX) $(FD) $(TFM) $(VF) $(PL) $(VPL) $(DVI) \
84 mdwfonts.ins Makefile.m4
85
86 MAINTAINERCLEANFILES = $(INS) $(ETX) $(TFM) $(VF) $(DVI) *.fd
87 CLEANFILES = \
88 *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.vpl \
89 p*.pl p*.mtx c*.mtx
90
91 Makefile.am: Makefile.m4
92 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
93
94 .PHONY: dvi
95
96 ##----- That's all, folks ---------------------------------------------------