aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-11-06 16:05:49 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-11-06 16:05:49 +0300
commitf662f46464d1e17cbc40168fc9a850c3a2dec5e6 (patch)
treee46518b5f3cbe04a67dc32e9b657c4c429070890
parentb9dba7f5ee8a103ee382adfc72a08e78b99ed602 (diff)
downloadPutnik-f662f46464d1e17cbc40168fc9a850c3a2dec5e6.tar.gz
Putnik-f662f46464d1e17cbc40168fc9a850c3a2dec5e6.zip
add Makefile and compiled fonts
-rw-r--r--.gitignore1
-rw-r--r--Makefile20
-rw-r--r--fonts/otf/Putnik.otfbin0 -> 27772 bytes
-rw-r--r--fonts/ttf/Putnik.ttfbin0 -> 49096 bytes
4 files changed, 21 insertions, 0 deletions
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
--- /dev/null
+++ b/fonts/otf/Putnik.otf
Binary files differ
diff --git a/fonts/ttf/Putnik.ttf b/fonts/ttf/Putnik.ttf
new file mode 100644
index 0000000..fd4f5c9
--- /dev/null
+++ b/fonts/ttf/Putnik.ttf
Binary files differ