Files
graphene/Makefile

11 lines
220 B
Makefile

SYS ?= $(shell gcc -dumpmachine)
export SYS
targets = all clean format test
.PHONY: $(targets)
$(targets):
cd Pal && cmake . -DSGX=$(SGX) && $(MAKE) $(subst all,install,$@)
$(MAKE) -C LibOS $@
$(MAKE) -C Runtime $@