mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 22:01:29 +00:00
11 lines
220 B
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 $@
|