-
Notifications
You must be signed in to change notification settings - Fork 14
/
site.template
61 lines (38 loc) · 1.74 KB
/
site.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copy this file to site.mk and edit the paths accordingly.
# Build cores for the following boards.
# If you just want to build for a single board then supply BOARD=boardname
# as part of the make command.
BOARDS=chameleon64 chameleon64v2 de10lite deca neptuno sidi uareloaded atlas_cyc
# If you're building for multiple boards you might need to have multiple versions
# of Quartus installed. Since you can't have more than one version in your
# search path, we have to locate them using absolute paths.
# Q13 for older devices. 13.0sp1 supports Cyclone II
# while 13.1 is the last version to support Cyclone III
Q13 = /opt/altera/13.1/quartus/bin/
# Q18 for newer devices - I believe anything from version 15 upwards
# will support the boards of interest.
Q18 = /opt/intelFPGA_lite/18.1/quartus/bin/
# Q17 specifically for MiSTer - not used by DeMiSTify (yet), but
# useful to have it defined for multi-board projects.
Q17 = /opt/intelFPGA_lite/17.0/quartus/bin/
# ISE for older Xilinx devices
ISE14 = /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/
# Paths for a version of Quartus supporting each class of device
QUARTUS_CYCLONEII = $(Q13)
QUARTUS_CYCLONEIII = $(Q13)
QUARTUS_CYCLONEIV = $(Q18)
QUARTUS_CYCLONEV = $(Q18)
QUARTUS_CYCLONE10LP = $(Q18)
QUARTUS_MAX10 = $(Q18)
ISE_SPARTAN6 = $(ISE14)
ISE_SPARTAN3 = $(ISE14)
# For multi-board projects, the version of Quartus to use when
# compiling for MiST and MiSTer.
QUARTUS_MIST = $(Q13)
QUARTUS_MISTER = $(Q17)
# A command to be executed when a board has finished compiling.
NOTIFY_BOARDCOMPLETE = notify-send -a DeMiSTify
#NOTIFY_BOARDCOMPLETE = echo -ne '\007'
# A command to be executed when all boards have finished compiling.
NOTIFY_COMPLETE = notify-send -a DeMiSTify
#NOTIFY_COMPLETE = echo -ne '\007'