mirror of
https://github.com/UzixLS/zx-sizif-512-ext.git
synced 2025-07-18 23:01:26 +03:00
20 lines
602 B
Makefile
20 lines
602 B
Makefile
REVISION = sizif512_ext
|
|
|
|
.PHONY: build program clean
|
|
|
|
build:
|
|
quartus_sh --no_banner --flow compile sizif512_ext -c ${REVISION}
|
|
|
|
program:
|
|
quartus_pgm --no_banner --mode=jtag -o "BVP;output/${REVISION}.pof"
|
|
|
|
clean:
|
|
rm -rf db incremental_db output
|
|
|
|
report:
|
|
cat output/${REVISION}.*.smsg output/${REVISION}.*.rpt |grep -e Error -e Critical -e Warning |grep -v -e "Family doesn't support jitter analysis" -e "Force Fitter to Avoid Periphery Placement Warnings"
|
|
|
|
export PATH:=/opt/quartus13.0sp1/quartus/bin:/cygdrive/c/Hwdev/quartus130sp1/quartus/bin:${PATH}
|
|
|
|
-include Makefile.local
|