Files
Dmitrii Kuvaiskii e745802ac0 [LibOS] Remove native/ and benchmark/ tests
Applications under native/ and benchmark/ cannot be built after commit
"Introduce one, central manifest, zero-config children and constant
MRENCLAVE" (because of the missing `libos.entrypoint` and possibly
other issues). They are not tested and not used by anyone these days.
The `exec_fork` test that failed previously now works on master; other
tests are more or less duplicates of our regression/ tests.
2021-01-18 11:16:07 -08:00

10 lines
207 B
Makefile

include ../../../Scripts/Makefile.configs
SUBDIRS = regression fs
.PHONY: all clean sgx-tokens distclean
all clean sgx-tokens distclean:
for d in $(SUBDIRS); do \
$(MAKE) -C $$d $@ || exit 255; \
done