From f662f46464d1e17cbc40168fc9a850c3a2dec5e6 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Fri, 6 Nov 2020 16:05:49 +0300 Subject: add Makefile and compiled fonts --- .gitignore | 1 + Makefile | 20 ++++++++++++++++++++ fonts/otf/Putnik.otf | Bin 0 -> 27772 bytes fonts/ttf/Putnik.ttf | Bin 0 -> 49096 bytes 4 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 fonts/otf/Putnik.otf create mode 100644 fonts/ttf/Putnik.ttf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ceb386 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +venv diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bf521df --- /dev/null +++ b/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 diff --git a/fonts/otf/Putnik.otf b/fonts/otf/Putnik.otf new file mode 100644 index 0000000..0f828cf Binary files /dev/null and b/fonts/otf/Putnik.otf differ diff --git a/fonts/ttf/Putnik.ttf b/fonts/ttf/Putnik.ttf new file mode 100644 index 0000000..fd4f5c9 Binary files /dev/null and b/fonts/ttf/Putnik.ttf differ -- cgit v1.2.3