Files
Simon Gaiser 2d29f7aaeb [Makefile] Drop SGX_RUN
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.
2019-09-27 12:38:14 +02:00

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