diff options
author | Paul Selkirk <paul@psgd.org> | 2018-12-04 15:12:43 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2019-04-09 17:14:54 -0400 |
commit | 73f5aa59d7bd4ff3b1b794c94b734727572c5986 (patch) | |
tree | 902a7a866d5f200acdeeb1659aa26d9eeac0af4a /build | |
parent | 97aaac4da6e33e218b26c1963ab563e9e2c11e82 (diff) |
Collapse build targets into one rule, because that's exactly what $@ is designed for.
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/build/Makefile b/build/Makefile index 22fd1f4..2fc9fe0 100644 --- a/build/Makefile +++ b/build/Makefile @@ -36,14 +36,10 @@ core_selector.v core_vfiles.mk: # Build some different configurations -bare trng hash mkmif rsa hsm hsm-super: +bare trng hash mkmif rsa hsm hsm-super keywrap: $(CONFIG_GEN) -p $@ $(MAKE) project=$(project)_$@ ucf=$(ucf) -keywrap: - $(CONFIG_GEN) -p keywrap - $(MAKE) project=$(project)_keywrap ucf=$(ucf) - # Verilog files that always go with builds on this platform. vfiles = \ |