diff options
Diffstat (limited to 'toolruns')
-rw-r--r-- | toolruns/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toolruns/Makefile b/toolruns/Makefile index 92f2f20..930e182 100644 --- a/toolruns/Makefile +++ b/toolruns/Makefile @@ -36,11 +36,13 @@ # #=================================================================== -CHACHA_SRC=../../chacha/src/rtl/chacha_core.v ../../chacha/src/rtl/chacha_qr.v +CHACHA_SRC_DIR=../../../cipher/chacha/src/rtl/ +CHACHA_SRC=$(CHACHA_SRC_DIR)chacha_core.v $(CHACHA_SRC_DIR)chacha_qr.v CSPRNG_SRC=../src/rtl/trng_csprng.v ../src/rtl/trng_csprng_fifo.v TB_CSPRNG_SRC=../src/tb/tb_csprng.v -SHA512_SRC=../../sha512/src/rtl/sha512_core.v ../../sha512/src/rtl/sha512_h_constants.v ../../sha512/src/rtl/sha512_k_constants.v ../../sha512/src/rtl/sha512_w_mem.v +SHA512_SRC_DIR=../../../hash/sha512/src/rtl/ +SHA512_SRC=$(SHA512_SRC_DIR)sha512_core.v $(SHA512_SRC_DIR)sha512_h_constants.v $(SHA512_SRC_DIR)sha512_k_constants.v $(SHA512_SRC_DIR)sha512_w_mem.v MIXER_SRC=../src/rtl/trng_mixer.v TB_MIXER_SRC=../src/tb/tb_mixer.v |