Makefile 331 B

12345678910111213141516
  1. include Scripts/Makefile.configs
  2. targets = all clean format test sgx-tokens distclean
  3. ifneq ($(filter sgx-tokens,$(MAKECMDGOALS)),)
  4. ifneq ($(SGX),1)
  5. $(error "The 'sgx-tokens' target requires SGX=1")
  6. endif
  7. endif
  8. .PHONY: $(targets)
  9. $(targets):
  10. $(MAKE) -C Scripts $@
  11. $(MAKE) -C Pal $@
  12. $(MAKE) -C LibOS $@
  13. $(MAKE) -C Runtime $@