15 lines
309 B
Makefile
15 lines
309 B
Makefile
|
# defaults
|
||
|
SIM ?= ghdl
|
||
|
TOPLEVEL_LANG ?= vhdl
|
||
|
BASE = $(PWD)/..
|
||
|
|
||
|
COMPILE_ARGS=--std=08
|
||
|
|
||
|
VHDL_SOURCES_trashernet += $(BASE)/trashernet/*.vhd
|
||
|
VHDL_SOURCES_bench += $(BASE)/cocotb/*.vhd
|
||
|
|
||
|
TOPLEVEL = bench.cocotb_trashernet_phy
|
||
|
MODULE = cocotb_trashernet_phy
|
||
|
|
||
|
include $(shell cocotb-config --makefiles)/Makefile.sim
|