From c2204a570f4c0abbf43a2a4944f9f89d51a5299d Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Thu, 27 Nov 2014 19:27:52 +0530 Subject: Add Makefile --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dac61fa --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +fontpath=/usr/share/fonts/truetype/malayalam +font=AnjaliOldLipi + +default: compile +all: compile webfonts + +compile: + @echo "Generating ${font}.ttf" + @fontforge -lang=ff -c "Open('${font}.sfd'); Generate('${font}.ttf')"; + +webfonts:compile + @echo "Generating webfonts"; + @sfntly -w ${font}.ttf ${font}.woff; + @sfntly -e -x ${font}.ttf ${font}.eot; + @[ -x `which woff2_compress` ] && woff2_compress ${font}.ttf; + +install: compile + @install -D -m 0644 ${font}.ttf ${DESTDIR}/${fontpath}/$${font}.ttf; -- cgit