Makefile 319 B

1234567891011121314
  1. include ../../../Scripts/Makefile.configs
  2. include ../../../Pal/src/Makefile.Host
  3. # SUBDIRS = regression native inline benchmark
  4. SUBDIRS = native fs
  5. .PHONY: default
  6. default: all
  7. .PHONY: all clean sgx-tokens distclean
  8. all clean sgx-tokens distclean:
  9. for d in $(SUBDIRS); do \
  10. $(MAKE) -C $$d $@ || exit 255; \
  11. done