diff options
author | Paul Selkirk <paul@psgd.org> | 2019-03-13 11:09:28 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2019-03-31 15:18:21 -0400 |
commit | 418b7689e1ef575d036047354cad6b22eea0736d (patch) | |
tree | a60e596efad6a0c18aff0fb979439fc68552d7cf /utils/Makefile | |
parent | 16d9cf7864a3659c926cf3e5d68ce093e1e8e75c (diff) |
Add support for hashsig key export/import.
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/utils/Makefile b/utils/Makefile index c9899f6..e88cb87 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -29,14 +29,15 @@ LIBHAL_SRC ?= .. LIBHAL_BLD ?= ${LIBHAL_SRC} +LIBTFM_BLD ?= ../../thirdparty/libtfm -LIBS = ${LIBHAL_BLD}/libhal.a +LIBS = ${LIBHAL_BLD}/libhal.a ${LIBTFM_BLD}/libtfm.a -CFLAGS ?= -g3 -Wall -fPIC -std=c99 -I${LIBHAL_SRC} +CFLAGS ?= -g3 -Wall -fPIC -std=c99 -I${LIBHAL_SRC} -I${LIBTFM_BLD} -BIN = eim_peek_poke cores +BIN = $(if $(wildcard ${LIBHAL_BLD}/hal_io_eim.o),eim_peek_poke) $(if $(wildcard ${LIBHAL_BLD}/core.o),cores) pkey-export pkey-import -all: $(if $(wildcard ${LIBHAL_BLD}/hal_io_eim.o),eim_peek_poke) $(if $(wildcard ${LIBHAL_BLD}/core.o),cores) +all: ${BIN} clean: rm -f *.o ${BIN} |