diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2021-09-06 11:11:52 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2021-09-06 11:11:52 +0200 |
commit | 9880f6e2dde6db341246fc80031629daec6d014e (patch) | |
tree | e31a37f56366554a8786de6739439595008e7d09 /icebox | |
parent | f14a7fb4cad51e9f5e9cb267ce8261016418f2c8 (diff) | |
download | icestorm-9880f6e2dde6db341246fc80031629daec6d014e.tar.gz icestorm-9880f6e2dde6db341246fc80031629daec6d014e.tar.bz2 icestorm-9880f6e2dde6db341246fc80031629daec6d014e.zip |
Update variable name to PYTHON3
Diffstat (limited to 'icebox')
-rw-r--r-- | icebox/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/icebox/Makefile b/icebox/Makefile index 38ec8a4..ffe439a 100644 --- a/icebox/Makefile +++ b/icebox/Makefile @@ -9,33 +9,33 @@ endif all: chipdb-384.txt chipdb-1k.txt chipdb-8k.txt chipdb-5k.txt chipdb-lm4k.txt chipdb-u4k.txt chipdb-384.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py -3 > chipdb-384.new + $(PYTHON3) icebox_chipdb.py -3 > chipdb-384.new mv chipdb-384.new chipdb-384.txt chipdb-1k.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py > chipdb-1k.new + $(PYTHON3) icebox_chipdb.py > chipdb-1k.new mv chipdb-1k.new chipdb-1k.txt chipdb-5k.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py -5 > chipdb-5k.new + $(PYTHON3) icebox_chipdb.py -5 > chipdb-5k.new mv chipdb-5k.new chipdb-5k.txt chipdb-u4k.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py -u > chipdb-u4k.new + $(PYTHON3) icebox_chipdb.py -u > chipdb-u4k.new mv chipdb-u4k.new chipdb-u4k.txt chipdb-lm4k.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py -4 > chipdb-lm4k.new + $(PYTHON3) icebox_chipdb.py -4 > chipdb-lm4k.new mv chipdb-lm4k.new chipdb-lm4k.txt chipdb-8k.txt: icebox.py iceboxdb.py icebox_chipdb.py - $(PYTHON) icebox_chipdb.py -8 > chipdb-8k.new + $(PYTHON3) icebox_chipdb.py -8 > chipdb-8k.new mv chipdb-8k.new chipdb-8k.txt check: all - $(PYTHON) tc_xlat_netnames.py - $(PYTHON) tc_rxlat_netnames.py - $(PYTHON) tc_logic_xpr.py + $(PYTHON3) tc_xlat_netnames.py + $(PYTHON3) tc_rxlat_netnames.py + $(PYTHON3) tc_logic_xpr.py clean: rm -f chipdb-1k.txt chipdb-8k.txt chipdb-384.txt chipdb-5k.txt chipdb-lm4k.txt chipdb-u4k.txt |