mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
For detection of SGX/non-SGX (for example in regression tests) always use the SGX environment variable. To generate launch/EINIT tokens use the new 'sgx-tokens' Make target.
15 lines
247 B
Makefile
15 lines
247 B
Makefile
# SUBDIRS = regression native inline benchmark
|
|
SUBDIRS = native
|
|
|
|
SYS ?= $(shell gcc -dumpmachine)
|
|
export SYS
|
|
|
|
.PHONY: default
|
|
default: all
|
|
|
|
.PHONY: all clean sgx-tokens
|
|
all clean sgx-tokens:
|
|
for d in $(SUBDIRS); do \
|
|
$(MAKE) -C $$d $@; \
|
|
done
|