15 lines
243 B
Makefile
15 lines
243 B
Makefile
SRCDIRS :=
|
|
empty:=
|
|
space:=$(empty) $(empty)
|
|
|
|
dir := src
|
|
include $(dir)/module.mk
|
|
|
|
all: sim
|
|
|
|
sim_output_location:
|
|
mkdir -p build/sim/
|
|
|
|
sim: sim_output_location
|
|
bsc -u -p %/Libraries:$(subst $(space):,:,$(SRCDIRS)) -bdir build src/ESeries.bsv
|