Makefile 231 B

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