-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·50 lines (40 loc) · 919 Bytes
/
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
ARCH_LIBDIR ?= /lib/$(shell $(CC) -dumpmachine)
ifeq ($(DEBUG),1)
GRAMINE_LOG_LEVEL = debug
else
GRAMINE_LOG_LEVEL = error
endif
.PHONY: all
all: duckdb.manifest
ifeq ($(SGX),1)
all: duckdb.manifest.sgx duckdb.sig
endif
duckdb.manifest: duckdb.manifest.template
gramine-manifest \
-Dlog_level=$(GRAMINE_LOG_LEVEL) \
-Dexecdir=$(shell pwd) \
-Darch_libdir=$(ARCH_LIBDIR) \
$< >$@
duckdb.manifest.sgx duckdb.sig: sgx_sign
@:
.INTERMEDIATE: sgx_sign
sgx_sign: duckdb.manifest
gramine-sgx-sign \
--manifest $< \
--output $<.sgx
ifeq ($(SGX),)
GRAMINE = gramine-direct
else
GRAMINE = gramine-sgx
endif
# Note that command-line arguments are hardcoded in the manifest file.
.PHONY: regression
regression: all
@$(RM) db/*
$(GRAMINE) duckdb < scripts/test.sql
@echo "[ Success 1/1 ]"
.PHONY: clean
clean:
$(RM) *.manifest *.manifest.sgx *.token *.sig OUTPUT db/*
.PHONY: distclean
distclean: clean