fix compile by adding SPI makefile
This commit is contained in:
parent
6b9e594b50
commit
3dd64034d2
|
@ -3,11 +3,10 @@
|
||||||
# For license terms, refer to the files in `doc/copying` in the Upsilon
|
# For license terms, refer to the files in `doc/copying` in the Upsilon
|
||||||
# source distribution.
|
# source distribution.
|
||||||
|
|
||||||
all:
|
all: make_spi
|
||||||
echo "dummy"
|
|
||||||
|
|
||||||
#make_spi:
|
make_spi:
|
||||||
# cd spi && make codegen
|
cd spi && make codegen
|
||||||
|
|
||||||
|
|
||||||
#make_bram:
|
#make_bram:
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
include ../common.makefile
|
||||||
|
.PHONY: codegen
|
||||||
|
|
||||||
|
codegen: spi_master_preprocessed.v
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm spi_master_preprocessed.v
|
Loading…
Reference in New Issue