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