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