aboutsummaryrefslogtreecommitdiff
path: root/.fonts/Makefile
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2013-03-26 16:17:58 -0400
committerRyan Kavanagh <rak@debian.org>2013-03-26 16:17:58 -0400
commitacb981e97d245822979cd95e2941504e1c2ca71a (patch)
treefad6c98ae10720a01e58d34b3dbc49e43a8a58b4 /.fonts/Makefile
parentAdd opbsd misc and openssh-unix-dev to imapfilter (diff)
Imported my fonts
Diffstat (limited to '.fonts/Makefile')
-rw-r--r--.fonts/Makefile20
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