aboutsummaryrefslogtreecommitdiff
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 6bd479d..42542e4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
.POSIX:
.PHONY: all install clean
.SUFFIXES:
-.SUFFIXES: .py3
+.SUFFIXES: .py
PREFIX = /usr/local
ALL = ssh_negotiate_term
PYTHON3 = /usr/bin/python3
-.py3:
+.py:
$(PYTHON3) -c pass
awk -v python3=$(PYTHON3) 'NR == 1 { print "#!" python3 } NR > 1' $< > $@
chmod +x ./$@