diff options
author | Karl Berry <karl@freefriends.org> | 2016-06-11 23:04:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-06-11 23:04:41 +0000 |
commit | c44a21c04063b38b9c04a092c51a2e7d39b94ecf (patch) | |
tree | a8835454f9eb5fba9f2a7f0f02d33d99c89cf331 /Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am | |
parent | 9206954046a4680fba774804c1667732923bfc56 (diff) |
fonts-tlwg (11jun16)
git-svn-id: svn://tug.org/texlive/trunk@41366 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am')
-rw-r--r-- | Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am b/Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am index d1c5caaa480..9d7ed6fbdf2 100644 --- a/Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am +++ b/Master/texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am @@ -20,6 +20,7 @@ TTFFILES = $(FONTSOURCES:.sfd=.ttf) OTFFILES = $(FONTSOURCES:.sfd=.otf) AFMFILES = $(FONTSOURCES:.sfd=.afm) PFBFILES = $(FONTSOURCES:.sfd=.pfb) +WOFFFILES = $(FONTSOURCES:.sfd=.woff) TESTTTFFILES = $(TTFFILES:%.ttf=TTF%.ttf) TESTOTFFILES = $(OTFFILES:%.otf=OTF%.otf) @@ -44,13 +45,17 @@ if INCLUDE_OTF otf_DATA = $(OTFFILES) endif +if INCLUDE_WOFF +woff_DATA = $(WOFFFILES) +endif + if INCLUDE_TESTFONT testfont_DATA = $(TESTTTFFILES) $(TESTTYPE1FILES) $(TESTOTFFILES) endif CLEANFILES = *.ttf *.g2n *.pfb *.afm *.pfm *.otf *.enc *.tfm -SUFFIXES: .sfd .ttf .otf .pfb +SUFFIXES: .sfd .ttf .otf .woff .pfb TTF%.ttf: %.sfd $(FONTFORGE) -script $(top_srcdir)/scripts/gen-test-ttf.pe $< @@ -67,5 +72,8 @@ PS%.afm PS%.pfb: %.sfd %.otf: %.sfd $(FONTFORGE) -script $(top_srcdir)/scripts/gen-otf.pe $< +%.woff: %.sfd + $(FONTFORGE) -script $(top_srcdir)/scripts/gen-woff.pe $< + %.afm %.pfb: %.sfd $(FONTFORGE) -script $(top_srcdir)/scripts/gen-pfb.pe $< |