diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2020-11-06 16:05:49 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2020-11-06 16:05:49 +0300 |
| commit | f662f46464d1e17cbc40168fc9a850c3a2dec5e6 (patch) | |
| tree | e46518b5f3cbe04a67dc32e9b657c4c429070890 | |
| parent | b9dba7f5ee8a103ee382adfc72a08e78b99ed602 (diff) | |
| download | Putnik-f662f46464d1e17cbc40168fc9a850c3a2dec5e6.tar.gz Putnik-f662f46464d1e17cbc40168fc9a850c3a2dec5e6.zip | |
add Makefile and compiled fonts
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 20 | ||||
| -rw-r--r-- | fonts/otf/Putnik.otf | bin | 0 -> 27772 bytes | |||
| -rw-r--r-- | fonts/ttf/Putnik.ttf | bin | 0 -> 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 Binary files differnew file mode 100644 index 0000000..0f828cf --- /dev/null +++ b/fonts/otf/Putnik.otf diff --git a/fonts/ttf/Putnik.ttf b/fonts/ttf/Putnik.ttf Binary files differnew file mode 100644 index 0000000..fd4f5c9 --- /dev/null +++ b/fonts/ttf/Putnik.ttf |
