diff options
author | Paul Selkirk <paul@psgd.org> | 2017-09-21 09:20:21 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2017-09-21 09:20:21 -0400 |
commit | a4e91b6221f75045dd1d97362e9d12c590ebc15a (patch) | |
tree | 04dc1fbaaca17585754aaa624db08e0dad491a38 /build/Makefile | |
parent | 74415e8d386b5080aaf7270a2d5356ed4f533859 (diff) |
Separate FMC test from mainline top-level module.
Diffstat (limited to 'build/Makefile')
-rw-r--r-- | build/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build/Makefile b/build/Makefile index 763ad5e..4e3a9bb 100644 --- a/build/Makefile +++ b/build/Makefile @@ -25,10 +25,10 @@ all: $(project).bit CONFIG = $(CORE_TREE)/platform/common/config CONFIG_BOARD = alpha CONFIG_PROJECT = hsm -CONFIG_GEN = $(CONFIG)/core_config.py -c $(CONFIG)/core.cfg -b $(CONFIG_BOARD) -p $(CONFIG_PROJECT) +CONFIG_GEN = $(CONFIG)/core_config.py -c $(CONFIG)/core.cfg -b $(CONFIG_BOARD) core_selector.v core_vfiles.mk: - $(CONFIG_GEN) + $(CONFIG_GEN) -p $(CONFIG_PROJECT) # Build some different configurations @@ -56,6 +56,10 @@ hsm: $(CONFIG_GEN) -p hsm $(MAKE) project=$(project)_hsm ucf=$(ucf) +hsm-super: + $(CONFIG_GEN) -p hsm-super + $(MAKE) project=$(project)_hsm-super ucf=$(ucf) + # Verilog files that always go with builds on this platform. vfiles = \ |