aboutsummaryrefslogtreecommitdiff
path: root/.fonts/Makefile
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-12-13 16:07:35 -0500
committerRyan Kavanagh <rak@rak.ac>2021-12-13 16:07:36 -0500
commit61f89d0a3d43a835b333e76317d49027e5a4c06e (patch)
tree1c537dce87c7603cddec9e94ce8eeec7a1a09100 /.fonts/Makefile
parentLESS=-FQXR (diff)
Migrating to chezmoi
Diffstat (limited to '.fonts/Makefile')
-rw-r--r--.fonts/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/.fonts/Makefile b/.fonts/Makefile
deleted file mode 100644
index 8998da7..0000000
--- a/.fonts/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-fonts = Brill_Typeface_2.06 \
- InconsolataHellenic.otf \
- ubuntu-font-family-0.80 \
- Courier-Prime \
- Fell \
- SourceCodePro_FontsOnly-1.017 \
- Vollkorn
-
-all: $(fonts)
-
-clean:
- rm -f $(fonts)
-
-install: $(fonts)
- [ -d ../build/.fonts ] || mkdir -p ../build/.fonts
- rsync -av $^ ../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