mirror of https://github.com/openXC7/prjxray.git
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
|
|
|