diff options
Diffstat (limited to 'libhal/tests')
-rw-r--r-- | libhal/tests/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libhal/tests/Makefile b/libhal/tests/Makefile index 61ad8b8..4e44362 100644 --- a/libhal/tests/Makefile +++ b/libhal/tests/Makefile @@ -2,9 +2,13 @@ ifndef CRYPTECH_ROOT CRYPTECH_ROOT := $(abspath ../../../..) endif -TFMDIR := $(abspath ../../libtfm) +LIBHAL_SRC ?= ${CRYPTECH_ROOT}/sw/libhal +LIBHAL_BLD ?= $(abspath ..) -vpath %.c ${CRYPTECH_ROOT}/sw/libhal/tests -vpath %.h ${CRYPTECH_ROOT}/sw/libhal/tests:${LIBTFM_DIR} +LIBTFM_SRC ?= ${CRYPTECH_ROOT}/sw/thirdparty/libtfm +LIBTFM_BLD ?= $(abspath ../../libtfm) -include ${CRYPTECH_ROOT}/sw/libhal/tests/Makefile +vpath %.c ${LIBHAL_SRC}/tests +vpath %.h ${LIBHAL_SRC}/tests:${LIBTFM_BLD} + +include ${LIBHAL_SRC}/tests/Makefile |