diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-11 23:49:08 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-11 23:49:08 +0000 |
commit | 10e86525da5f0224078b5bb299e21166a36631fc (patch) | |
tree | 4ef035be3ffb624eac1de0eea79c4550a84d2d6c /Master/texmf-dist/source/fonts/fpl/Makefile | |
parent | 7f97ebfa628c4d00c1d298daf8b8b5da3781fdb5 (diff) |
trunk/Master/texmf-dist/source/fonts
git-svn-id: svn://tug.org/texlive/trunk@111 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts/fpl/Makefile')
-rw-r--r-- | Master/texmf-dist/source/fonts/fpl/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/fpl/Makefile b/Master/texmf-dist/source/fonts/fpl/Makefile new file mode 100644 index 00000000000..6e2ad55b7fb --- /dev/null +++ b/Master/texmf-dist/source/fonts/fpl/Makefile @@ -0,0 +1,39 @@ +# Time-stamp: <2005-02-13 11:57:43 ralf> +# Copyright 2005 Ralf Stubner +# See the file COPYING (GNU General Public License) for license +# conditions. + +FONTFORGE=/usr/bin/fontforge -script + +SC_SOURCE=TeXPalladioL-SC.pe Palladio-SC.sfd pplrc9d-kern.afm +IT_SOURCE=TeXPalladioL-ItalicOsF.pe Palladio-ItalicOsF.sfd pplri9d-kern.afm +BD_SOURCE=TeXPalladioL-BoldOsF.pe Palladio-BoldOsF.sfd pplb9d-kern.afm +BI_SOURCE=TeXPalladioL-BoldItalicOsF.pe Palladio-BoldItalicOsF.sfd pplbi9d-kern.afm +SOURCE=$(SC_SOURCE) $(IT_SOURCE) $(BD_SOURCE) $(BI_SOURCE) URW-OtherSubrs.ps AddGPL AddException + +all: fplrc8a.pfb fplrij8a.pfb fplbj8a.pfb fplbij8a.pfb + +fplrc8a.pfb: $(SC_SOURCE) + $(FONTFORGE) TeXPalladioL-SC.pe + +fplrij8a.pfb: $(IT_SOURCE) + $(FONTFORGE) TeXPalladioL-ItalicOsF.pe + +fplbj8a.pfb: $(BD_SOURCE) + $(FONTFORGE) TeXPalladioL-BoldOsF.pe + +fplbij8a.pfb: $(BI_SOURCE) + $(FONTFORGE) TeXPalladioL-BoldItalicOsF.pe + + +dist: all + rm -rf dist/ + mkdir -p dist/{type1,afm,pfm,source} + cp README COPYING dist/ + cp fplrc8a.pfb fplrij8a.pfb fplbj8a.pfb fplbij8a.pfb dist/type1/ + cp fplrc8a.pfm fplrij8a.pfm fplbj8a.pfm fplbij8a.pfm dist/pfm/ + cp fplrc8a.afm fplrij8a.afm fplbj8a.afm fplbij8a.afm dist/afm/ + cp $(SOURCE) Makefile dist/source/ + cp README.source dist/source/README + (cd dist; zip fpl.zip README COPYING {type1,afm,pfm,source}/*) + |