blob: 1b8b5a26e061e6d2bc700c4889551b4f9e057d64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
ifndef CRYPTECH_ROOT
CRYPTECH_ROOT := $(abspath ../../../..)
endif
LIBHAL_SRC ?= ${CRYPTECH_ROOT}/sw/libhal
LIBHAL_BLD ?= $(abspath ..)
LIBTFM_SRC ?= ${CRYPTECH_ROOT}/sw/thirdparty/libtfm
LIBTFM_BLD ?= $(abspath ../../libtfm)
vpath %.c ${LIBHAL_SRC}/utils
vpath %.h ${LIBHAL_SRC}/utils:${LIBTFM_BLD}
include ${LIBHAL_SRC}/utils/Makefile
|