diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-03-26 16:17:58 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-03-26 16:17:58 -0400 |
commit | acb981e97d245822979cd95e2941504e1c2ca71a (patch) | |
tree | fad6c98ae10720a01e58d34b3dbc49e43a8a58b4 /.fonts/Makefile | |
parent | Add opbsd misc and openssh-unix-dev to imapfilter (diff) |
Imported my fonts
Diffstat (limited to '')
-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 |