diff options
Diffstat (limited to '.fonts/Makefile')
-rw-r--r-- | .fonts/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
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 |