diff options
author | Paul Selkirk <paul@psgd.org> | 2016-06-14 16:43:22 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-06-14 16:43:22 -0400 |
commit | fc8be8024560bb77221758b0351c3de7b4ea6e93 (patch) | |
tree | f1bbb452089c377b7682f2595e1c7d0d29dd8fb8 /build/Makefile | |
parent | 3f0e37406e1932920bea333b7a73ca4b297d97f1 (diff) |
Move core config script here from core/platform/common, and adapt to the larger fmc address bus.
Diffstat (limited to 'build/Makefile')
-rw-r--r-- | build/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/build/Makefile b/build/Makefile index aed01df..d5d4871 100644 --- a/build/Makefile +++ b/build/Makefile @@ -22,32 +22,36 @@ all: $(project).bit # Build the default core_selector if it doesn't already exist. -CONFIG = $(CORE_TREE)/platform/common/config +CONFIG = . core_selector.v core_vfiles.mk: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg + $(CONFIG)/config.py # Build some different configurations bare: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg -s bare + $(CONFIG)/config.py -s bare $(MAKE) project=$(project)_bare ucf=$(ucf) trng: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg -s trng + $(CONFIG)/config.py -s trng $(MAKE) project=$(project)_trng ucf=$(ucf) hash: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg -s hash + $(CONFIG)/config.py -s hash $(MAKE) project=$(project)_hash ucf=$(ucf) rsa: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg -s rsa + $(CONFIG)/config.py -s rsa $(MAKE) project=$(project)_rsa ucf=$(ucf) mkmif: - $(CONFIG)/config.py -c $(CONFIG)/config.cfg -s mkmif + $(CONFIG)/config.py -s mkmif $(MAKE) project=$(project)_mkmif ucf=$(ucf) +hsm: + $(CONFIG)/config.py -s hsm + $(MAKE) project=$(project)_hsm ucf=$(ucf) + # Verilog files that always go with builds on this platform. vfiles = \ |