Tommy Lillehagen 25bee1903a
ENT-1263 - Use MRENCLAVE instead of enclave ID in create_thread (#487)
* ENT-1263 - Use MRENCLAVE instead of enclave_id for create_thread

* ENT-1263 - Dedup dependencies in JAR

* ENT-1263 - Ensure C++ 11 is used for enclave inspection tool

* ENT-1263 - Throw exception if enclave ID mapping does not exist
2018-04-24 17:11:33 +01:00

15 lines
321 B
Makefile

.PHONY: all clean
LIBDIR = ../common
SOURCE = enclave-inspector.cpp ${LIBDIR}/enclave_metadata.cpp
HEADERS = ${LIBDIR}/enclave_metadata.h ${LIBDIR}/elf_types.h ${LIBDIR}/sgx_types.h
RESULT = enclave-inspector
all: ${RESULT}
${RESULT}: ${SOURCE} ${HEADERS}
g++ -std=c++11 -o $@ ${SOURCE}
clean:
@rm -f ${RESULT}