|
SIM_SRC = ../sim
|
|
SYN_SRC = ../syn
|
|
VHD_STD = 02
|
|
|
|
.PHONY: sim
|
|
sim: queuet stringt simt spit
|
|
|
|
queuet : QueueT.vhd $(SIM_SRC)/QueueP.vhd $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd
|
|
ghdl -a --std=$(VHD_STD) --work=libvhdl $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd $(SIM_SRC)/QueueP.vhd
|
|
ghdl -a --std=$(VHD_STD) QueueT.vhd
|
|
ghdl -e --std=$(VHD_STD) QueueT
|
|
ghdl -r --std=$(VHD_STD) QueueT
|
|
|
|
stringt : StringT.vhd $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd
|
|
ghdl -a --std=$(VHD_STD) --work=libvhdl $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd
|
|
ghdl -a --std=$(VHD_STD) StringT.vhd
|
|
ghdl -e --std=$(VHD_STD) StringT
|
|
ghdl -r --std=$(VHD_STD) StringT
|
|
|
|
simt : SimT.vhd $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd $(SIM_SRC)/SimP.vhd
|
|
ghdl -a --std=$(VHD_STD) --work=libvhdl $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd $(SIM_SRC)/SimP.vhd
|
|
ghdl -a --std=$(VHD_STD) SimT.vhd
|
|
ghdl -e --std=$(VHD_STD) SimT
|
|
ghdl -r --std=$(VHD_STD) SimT
|
|
|
|
spit : vhdl2008 SpiT.vhd $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd $(SIM_SRC)/SimP.vhd $(SYN_SRC)/SpiSlaveE.vhd $(SYN_SRC)/SpiMasterE.vhd
|
|
ghdl -a --std=$(VHD_STD) --work=libvhdl $(SIM_SRC)/StringP.vhd $(SIM_SRC)/AssertP.vhd $(SIM_SRC)/SimP.vhd
|
|
ghdl -a --std=$(VHD_STD) -fpsl $(SYN_SRC)/SpiSlaveE.vhd $(SYN_SRC)/SpiMasterE.vhd
|
|
ghdl -a --std=$(VHD_STD) -fpsl SpiT.vhd
|
|
ghdl -e --std=$(VHD_STD) SpiT
|
|
ghdl -r --std=$(VHD_STD) SpiT --wave=spit.ghw
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *.cf
|
|
rm -f *.ghw
|
|
rm -f queuet
|
|
rm -f stringt
|
|
rm -f simt
|
|
rm -f spit
|