URL
https://opencores.org/ocsvn/present/present/trunk
Subversion Repositories present
[/] [present/] [trunk/] [Pure/] [syn/] [XC3ES500/] [Makefile] - Rev 8
Compare with Previous | Blame | View Log
PROJECT=present-pureRM=rm -rfPLATFORM=xc3s500e-fg320-5XILINX_DIR="D:/Programy/Xilinx/14.2/ISE_DS/ISE/bin/nt64/"XST_DIR=$(XILINX_DIR)"xst.exe"NGDBUILD_DIR=$(XILINX_DIR)"ngdbuild.exe"MAP=$(XILINX_DIR)"map.exe"PAR=$(XILINX_DIR)"par.exe"TRCE=$(XILINX_DIR)"trce.exe"BITGEN=$(XILINX_DIR)"bitgen.exe"clean: clean_postgen$(RM) "./out/"*.*$(RM) "./log/"*.*clean_postgen:$(RM) "./_xmsgs"$(RM) "./_ngo"$(RM) "./xlnx_auto_0_xdb"$(RM) "./xst"$(RM) *_vhdl.prj *.bgn *.bld *.csv *.drc *.lso *.map *.mrp *.ncd *.ngc *.ngd *.ngm *.ngr *.pad *.par *.pcf *.ptwx *.syr *.twr *.twx *.unroutes *.xpi *.xwbtsynthesize: cleanmkdir "./xst"mkdir "./xst/projnav.tmp"$(XST_DIR) -intstyle ise -ifn "./PresentEnc.xst" -ofn "./PresentEnc.syr"translate: synthesize$(NGDBUILD_DIR) -intstyle ise -dd _ngo -nt timestamp -i -p $(PLATFORM) "PresentEnc.ngc" PresentEnc.ngdmap: translate$(MAP) -intstyle ise -p $(PLATFORM) -cm area -ir off -pr off -c 100 -o PresentEnc_map.ncd PresentEnc.ngd PresentEnc.pcfpar: map$(PAR) -w -intstyle ise -ol high -t 1 PresentEnc_map.ncd PresentEnc.ncd PresentEnc.pcftrce: par$(TRCE) -intstyle ise -v 3 -s 5 -n 3 -fastpaths -xml PresentEnc.twx PresentEnc.ncd -o PresentEnc.twr PresentEnc.pcfbitgen: par$(BITGEN) -intstyle ise -f PresentEnc.ut PresentEnc.ncdpostgen:mv *.bit ./outmv *.xrpt ./logmv *.txt ./logmv *.xml ./logmv *.html ./log
