aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-11-18 12:18:10 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-11-18 12:18:10 +0300
commit304c6ab8daf21e8561e6accf6367780b6837d6ed (patch)
treee0616133523a830eed2c95d2f9a3323f2f96d405 /Makefile
parentf45e228d64960d19050e8d21af7d5707a1b76c08 (diff)
downloadPutnik-304c6ab8daf21e8561e6accf6367780b6837d6ed.tar.gz
Putnik-304c6ab8daf21e8561e6accf6367780b6837d6ed.zip
update python bin location
also strip license from font-files - no need to store it there.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c25ddf1..5f9b953 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
FONT_NAME=Putnik
FONT_VERSION=$(shell git describe --abbrev=4)
RELEASE=$(FONT_NAME)-$(FONT_VERSION)
-PYTHON=/usr/bin/python
+PYTHON=/usr/bin/python3
VENV_BIN=venv/bin
FONTMAKE=$(VENV_BIN)/fontmake
OUT_DIR=fonts
@@ -32,6 +32,6 @@ release-zip: ttf otf
zip -j $(RELEASE).zip $(OTF) $(TTF) LICENSE
clean:
- -rm $(TTF) $(OTF) $(RELEASE).*
+ -rm $(TTF) $(OTF) *.zip *.tar.gz
.PHONY: all release venv clean