aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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