aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2015-03-26 13:23:00 +0100
committerJoachim StroĢˆmbergson <joachim@secworks.se>2015-03-26 13:23:00 +0100
commitaa3ba0f56459a140fcb1df24758ab32a5fe9cc9d (patch)
tree8401ffef02e7fc63310af87d450422f3e18960a3
parent62789094bb4079a024be518ecbe79efa68f62d9d (diff)
Updated the Makefile to match the new CT repo structure.
-rw-r--r--toolruns/Makefile6
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