From acb981e97d245822979cd95e2941504e1c2ca71a Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Tue, 26 Mar 2013 16:17:58 -0400 Subject: Imported my fonts --- .fonts/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .fonts/Makefile (limited to '.fonts/Makefile') diff --git a/.fonts/Makefile b/.fonts/Makefile new file mode 100644 index 0000000..60390be --- /dev/null +++ b/.fonts/Makefile @@ -0,0 +1,20 @@ +fonts = InconsolataHellenic.otf \ + ubuntu-font-family-0.80 \ + Fell \ + Vollkorn + +all: $(fonts) + +clean: + rm -f $(fonts) + +install: $(fonts) + [ -d ../build/.fonts ] || mkdir -p ../build/.fonts + cp -fr $^ ../build/.fonts/ + +# Requires fontforge +InconsolataHellenic.otf: Inconsolata-Hellenic/Inconsolata-Hellenic.sfd convert.pe + fontforge -script convert.pe $< + mv -f $(<:.sfd=.otf) $@ + +.PHONY: all clean install -- cgit v1.2.3