mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-24 08:07:15 +00:00
18 lines
352 B
Makefile
18 lines
352 B
Makefile
include Scripts/Makefile.configs
|
|
|
|
targets = all clean format test sgx-tokens distclean
|
|
|
|
ifneq ($(filter sgx-tokens,$(MAKECMDGOALS)),)
|
|
ifneq ($(SGX),1)
|
|
$(error "The 'sgx-tokens' target requires SGX=1")
|
|
endif
|
|
endif
|
|
|
|
.PHONY: $(targets)
|
|
$(targets):
|
|
$(MAKE) -C Scripts $@
|
|
$(MAKE) -C Pal $@
|
|
$(MAKE) -C LibOS $@
|
|
$(MAKE) -C Runtime $@
|
|
$(MAKE) -C Tools $@
|