mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-21 05:07:29 +00:00
e745802ac0
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.
10 lines
207 B
Makefile
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
|