mirror of
https://github.com/openXC7/prjxray.git
synced 2026-09-06 01:17:02 +02:00
This fixes the problem that when sourcing the vivado settings file the library search path is modified resulting in non-vivado binaries not working due to being dynamically linked against the vivado libraries instead of the system ones. Signed-off-by: Felix Held <[email protected]>
13 lines
276 B
Makefile
13 lines
276 B
Makefile
all: build/speed.json
|
|
|
|
build/node.txt: speed_json.py generate.tcl
|
|
mkdir -p build
|
|
cd build && ${XRAY_VIVADO} -mode batch -source ../generate.tcl
|
|
|
|
build/speed.json: build/node.txt
|
|
cd build && python ../speed_json.py speed_model.txt node.txt speed.json
|
|
|
|
clean:
|
|
rm -rf build
|
|
|