-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathMakefile
62 lines (50 loc) · 1.39 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright (C) 2024 Gramine contributors
# # SPDX-License-Identifier: BSD-3-Clause
THIS_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
CURL_DIR ?= /usr/bin
ARCH_LIBDIR ?= /lib/$(shell $(CC) -dumpmachine)
ifeq ($(DEBUG),1)
GRAMINE_LOG_LEVEL = debug
else
GRAMINE_LOG_LEVEL = error
endif
.PHONY: all
all: curl.manifest
ifeq ($(SGX),1)
all: curl.manifest.sgx curl.sig
endif
curl.manifest: curl.manifest.template
gramine-manifest \
-Dlog_level=$(GRAMINE_LOG_LEVEL) \
-Dhome=$(HOME) \
-Darch_libdir=$(ARCH_LIBDIR) \
-Dcurl_dir=$(CURL_DIR) \
$< >$@
# Make on Ubuntu <= 20.04 doesn't support "Rules with Grouped Targets" (`&:`),
# for details on this workaround see
# https://github.com/gramineproject/gramine/blob/e8735ea06c/CI-Examples/helloworld/Makefile
curl.manifest.sgx curl.sig: sgx_sign
@:
.INTERMEDIATE: sgx_sign
sgx_sign: curl.manifest
gramine-sgx-sign \
--manifest $< \
--output $<.sgx
ifeq ($(SGX),)
GRAMINE = gramine-direct
else
GRAMINE = gramine-sgx
endif
.PHONY: check
check: all
(cd test-docroot; exec python3 -m http.server -b 127.0.0.1 19111) & httpd_pid=$$!; \
../common_tools/wait_for_server 5 127.0.0.1 19111; \
$(GRAMINE) ./curl http://127.0.0.1:19111/ > OUTPUT; rc=$$?; \
kill $$httpd_pid; exit $$rc
@grep -q "Hello World" OUTPUT && echo "[ Success 1/1 ]"
@rm OUTPUT
.PHONY: clean
clean:
$(RM) *.manifest *.manifest.sgx *.token *.sig OUTPUT
.PHONY: distclean
distclean: clean