| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | SYS ?= $(shell gcc -dumpmachine)CC	= gccCFLAGS	= -Wall -O2 -std=gnu99 -fgnu89-inline -fno-builtin -nostdlib \	  -I../include/pal -I../libpreloads    = $(patsubst %.c,%,$(wildcard *.so.c))executables = $(filter-out $(preloads),$(patsubst %.c,%,$(wildcard *.c))) ..Bootstrapmanifests   = manifest $(patsubst %.manifest.template,%.manifest,$(wildcard *.manifest.template))target = $(executables) $(manifests)graphene_lib = .lib/graphene-lib.apal_lib = ../src/libpal.soheaders = $(wildcard ../include/pal/*.h)default: allinclude ../src/Makefile.TestRUNTIME_DIR = $(CURDIR)/../../Runtimeexport PAL_LOADER = $(RUNTIME_DIR)/pal-$(PAL_HOST)export PAL_SEC = $(RUNTIME_DIR)/pal_sec-$(PAL_HOST)all: $(call expand_target,$(target)) $(preloads)ifeq ($(DEBUG),1)CC += -gendifexport DEBUGmanifest_rules = \	-e 's:\$$(PAL):$(abspath ../../Runtime/pal_loader):g' \	-e 's:\$$(PWD):$(shell pwd)/:g' \	$(extra_rules)manifest: manifest.template	sed $(manifest_rules) $< >$@%.manifest: %.manifest.template	sed $(manifest_rules) $< >$@	(grep -q "#\!" $@ && chmod +x $@) || true../src/user_shared_start.o ../src/user_start.o: ../src/user_start.S	$(MAKE) -C ../src $(notdir $@)ifeq ($(SYS),x86_64-linux-gnu)$(preloads): %.so: %.so.c ../src/user_shared_start.o \	$(graphene_lib) $(pal_lib) ../include/pal/pal.h	@echo [ $@ ]	@$(CC) -shared -fPIC $(CFLAGS) $^ -o $@$(executables): %: %.c ../src/user_start.o \	$(graphene_lib) $(pal_lib) $(preloads) ../include/pal/pal.h	@echo [ $@ ]	@$(CC) $(CFLAGS) $^ -o $@$(graphene_lib):	$(MAKE) -C ../lib target=$(shell pwd)/.lib/.PHONY: packpack: $(preloads) $(executables)	@../../Scripts/pack_binaries.sh test $^else$(preloads) $(executables): .packed/test.tar.gz	tar -xmozf $< $@endifPYTHONENV = "PYTHONPATH=../../Scripts"ifeq ($(SGX_RUN),1)	PYTHONENV += "TIMEOUT=5000"endifregression: $(call expand_target,$(target))	@printf "\n\nBasic Bootstrapping:\n"	@for f in $(wildcard 00_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\nException Handling:\n"	@for f in $(wildcard 01_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\nSingle-Process Functionalities:\n"	@for f in $(wildcard 02_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\nProcess Creation:\n"	@for f in $(wildcard 03_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\nMulti-Process Functionalities:\n"	@for f in $(wildcard 04_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\nReference Monitor (Optional):\n"	@for f in $(wildcard 05_*.py); do env $(PYTHONENV) python $$f; done	@printf "\n\n"clean:	rm -rf $(call expand_target,$(target)) $(preloads) *.tmp .lib *.cached
 |