mirror of
https://github.com/openXC7/prjxray.git
synced 2026-09-05 01:01:54 +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
309 B
Makefile
13 lines
309 B
Makefile
all: build/timgrid.json
|
|
|
|
build/timgrid.txt: generate.tcl
|
|
mkdir -p build
|
|
cd build && ${XRAY_VIVADO} -mode batch -source ../generate.tcl
|
|
|
|
build/timgrid.json: build/timgrid.txt
|
|
cd build && python3 ../tile_txt2json.py --speed-json ../../speed/build/speed.json timgrid.txt timgrid-s.json
|
|
|
|
clean:
|
|
rm -rf build
|
|
|