1 |
6 |
gajos |
PROJECT=present-decode
|
2 |
|
|
|
3 |
|
|
RM=rm -rf
|
4 |
|
|
|
5 |
|
|
PLATFORM=xc3s500e-fg320-5
|
6 |
|
|
|
7 |
|
|
XILINX_DIR="D:/Programy/Xilinx/14.2/ISE_DS/ISE/bin/nt64/"
|
8 |
|
|
FUSE=$(XILINX_DIR)"fuse.exe"
|
9 |
|
|
VHPCOMP=$(XILINX_DIR)"vhpcomp.exe"
|
10 |
|
|
|
11 |
|
|
clean:
|
12 |
|
|
$(RM) ./isim
|
13 |
|
|
$(RM) ./isim.wdb
|
14 |
|
|
$(RM) *.log
|
15 |
|
|
$(RM) *.xmsgs
|
16 |
|
|
$(RM) ./fuseRelaunch.cmd
|
17 |
|
|
$(RM) *.exe
|
18 |
|
|
|
19 |
|
|
exports:
|
20 |
|
|
export DISPLAY=:0
|
21 |
|
|
export XILINX=D:/Programy/Xilinx/14.2/ISE_DS/ISE
|
22 |
|
|
export SYSOP=nt64
|
23 |
|
|
export PATH=${XILINX}/bin/${SYSOP}
|
24 |
|
|
export LD_LIBRARY_PATH=${XILINX}/lib/${SYSOP}
|
25 |
|
|
|
26 |
|
|
PresentDecTB:
|
27 |
|
|
$(VHPCOMP) -work isim_temp -intstyle ise -prj ./PresentDecTB_stx_beh.prj
|
28 |
|
|
$(FUSE) -intstyle ise -incremental -o PresentDecTB_isim_beh.exe -prj ./PresentDecTB_beh.prj work.PresentDecTB
|
29 |
|
|
|
30 |
|
|
run_PresentDecTB: exports PresentDecTB
|
31 |
|
|
"./PresentDecTB_isim_beh.exe" -intstyle ise -gui -tclbatch isim.cmd -wdb "PresentDecTB_isim_beh.wdb"
|
32 |
|
|
|
33 |
|
|
keyupd_invTB:
|
34 |
|
|
$(VHPCOMP) -work isim_temp -intstyle ise -prj ./keyupd_invTB_stx_beh.prj
|
35 |
|
|
$(FUSE) -intstyle ise -incremental -o keyupd_invTB_isim_beh.exe -prj ./keyupd_invTB_beh.prj work.keyupd_invTB
|
36 |
|
|
|
37 |
|
|
run_keyupd_invTB: exports keyupd_invTB
|
38 |
|
|
"./keyupd_invTB_isim_beh.exe" -intstyle ise -gui -tclbatch isim.cmd -wdb "keyupd_invTB_isim_beh.wdb"
|
39 |
|
|
|
40 |
|
|
sLayer_invTB:
|
41 |
|
|
$(VHPCOMP) -work isim_temp -intstyle ise -prj ./sLayer_invTB_stx_beh.prj
|
42 |
|
|
$(FUSE) -intstyle ise -incremental -o sLayer_invTB_isim_beh.exe -prj ./sLayer_invTB_beh.prj work.sLayer_invTB
|
43 |
|
|
|
44 |
|
|
run_sLayer_invTB: exports sLayer_invTB
|
45 |
|
|
"./sLayer_invTB_isim_beh.exe" -intstyle ise -gui -tclbatch isim.cmd -wdb "sLayer_invTB_isim_beh.wdb"
|
46 |
|
|
|
47 |
|
|
PresentFullDecoderTB:
|
48 |
|
|
$(VHPCOMP) -work isim_temp -intstyle ise -prj ./PresentFullDecoderTB_stx_beh.prj
|
49 |
|
|
$(FUSE) -intstyle ise -incremental -o PresentFullDecoderTB_isim_beh.exe -prj ./PresentFullDecoderTB_beh.prj work.PresentFullDecoderTB
|
50 |
|
|
|
51 |
|
|
run_PresentFullDecoderTB: exports PresentFullDecoderTB
|
52 |
|
|
"./PresentFullDecoderTB_isim_beh.exe" -intstyle ise -gui -tclbatch isim.cmd -wdb "PresentFullDecoderTB_isim_beh.wdb"
|
53 |
|
|
|
54 |
|
|
PresentKeyGenTB:
|
55 |
|
|
$(VHPCOMP) -work isim_temp -intstyle ise -prj ./PresentKeyGenTB_stx_beh.prj
|
56 |
|
|
$(FUSE) -intstyle ise -incremental -o PresentKeyGenTB_isim_beh.exe -prj ./PresentKeyGenTB_beh.prj work.PresentKeyGenTB
|
57 |
|
|
|
58 |
|
|
run_PresentKeyGenTB: exports PresentKeyGenTB
|
59 |
|
|
"./PresentKeyGenTB_isim_beh.exe" -intstyle ise -gui -tclbatch isim.cmd -wdb "PresentKeyGenTB_isim_beh.wdb"
|