all repos — Putnik @ f662f46464d1e17cbc40168fc9a850c3a2dec5e6

non-professional cyrillic display font

add Makefile and compiled fonts
la-ninpre leobrekalini@gmail.com
Fri, 06 Nov 2020 16:05:49 +0300
commit

f662f46464d1e17cbc40168fc9a850c3a2dec5e6

parent

b9dba7f5ee8a103ee382adfc72a08e78b99ed602

4 files changed, 21 insertions(+), 0 deletions(-)

jump to
A .gitignore

@@ -0,0 +1,1 @@

+venv
A Makefile

@@ -0,0 +1,20 @@

+FONTNAME=Putnik +OUT_DIR=fonts +UFO_SRC=sources/$(FONTNAME).ufo +TTF=fonts/ttf/$(FONTNAME).ttf +OTF=fonts/otf/$(FONTNAME).otf + +all: ttf otf + +ttf: $(TTF) +$(TTF): $(UFO_SRC) + fontmake -u $(UFO_SRC) -o ttf --output-dir fonts/ttf/ + +otf: $(OTF) +$(OTF): $(UFO_SRC) + fontmake -u $(UFO_SRC) -o otf --output-dir fonts/otf/ + +clean: + -rm $(TTF) $(OTF) + +.PHONY: clean