From d4ddeb1ccfe2040b690a4625a281bd3a369fff80 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Tue, 25 Nov 2014 19:30:37 +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..7f1f657 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +fontpath=/usr/share/fonts/truetype/malayalam +font=Rachana + +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