Makefile 280 B

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