diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-19 09:06:37 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-19 09:06:37 +0200 |
commit | f3a2d5796aa7d11b9dd23ba4839a8a991ebf76fa (patch) | |
tree | 3a4c75b51b841218554954e026fe953b0fc94044 /icebox/Makefile | |
parent | 235ff955e3f857a8b4353a64d5b18dd3da91f1f5 (diff) | |
parent | 55a46367881e17b05bd64d9f44b30bf6623b5e37 (diff) | |
download | icestorm-f3a2d5796aa7d11b9dd23ba4839a8a991ebf76fa.tar.gz icestorm-f3a2d5796aa7d11b9dd23ba4839a8a991ebf76fa.tar.bz2 icestorm-f3a2d5796aa7d11b9dd23ba4839a8a991ebf76fa.zip |
Merge pull request #3 from qbit/master
Add entry points for PYTHON and CXX
Diffstat (limited to 'icebox/Makefile')
-rw-r--r-- | icebox/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/icebox/Makefile b/icebox/Makefile index cc78073..cd92235 100644 --- a/icebox/Makefile +++ b/icebox/Makefile @@ -1,13 +1,14 @@ +PYTHON ?= python2 DESTDIR = /usr/local all: chipdb-1k.txt chipdb-8k.txt chipdb-1k.txt: icebox.py iceboxdb.py icebox_chipdb.py - python2 icebox_chipdb.py > chipdb-1k.new + $(PYTHON) icebox_chipdb.py > chipdb-1k.new mv chipdb-1k.new chipdb-1k.txt chipdb-8k.txt: icebox.py iceboxdb.py icebox_chipdb.py - python2 icebox_chipdb.py -8 > chipdb-8k.new + $(PYTHON) icebox_chipdb.py -8 > chipdb-8k.new mv chipdb-8k.new chipdb-8k.txt clean: |