Makefile 282 B

1234567891011121314
  1. # SUBDIRS = regression native inline benchmark
  2. SUBDIRS = native fs
  3. SYS ?= $(shell gcc -dumpmachine)
  4. export SYS
  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