Makefile 250 B

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