blob: b8949271d3c076118b2ac5b08762ad9fd0cc1b89 (
plain) (
tree)
|
|
fonts = 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
|