-
Notifications
You must be signed in to change notification settings - Fork 93
/
Makefile
143 lines (117 loc) · 3.71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
PROJDIR := $(shell readlink -f ..)
TOP_DIR := .
CUR_DIR := $(shell pwd)
PREFIX := /usr/local
ifeq ($(shell test -e /etc/debian_version && echo -n yes),yes)
DEBIANOS = true
else
DEBIANOS = false
endif
$(info DEBIANOS is: $(DEBIANOS))
TARGET_DIR := ../target
BIN_NAME := attestation-agent
SOURCE_ARCH := $(shell uname -m)
ARCH ?= $(shell uname -m)
DEBUG ?=
LIBC ?= gnu
ttrpc ?=
grpc ?=
DESTDIR ?= $(PREFIX)/bin
RUSTFLAGS_ARGS ?=
binary ?=
binary_name ?=
ATTESTER ?=
features ?= coco_as,kbs
OPENSSL ?=
ifeq ($(SOURCE_ARCH), ppc64le)
ARCH=powerpc64le
endif
ifeq ($(ARCH), $(filter $(ARCH), s390x powerpc64le))
OPENSSL=1
endif
ifeq ($(ttrpc), false)
binary = --bin grpc-aa
features += bin,grpc
binary_name = grpc-aa
else
binary = --bin ttrpc-aa
features += bin,ttrpc
binary_name = ttrpc-aa
endif
ifdef ATTESTER
ifneq ($(ATTESTER), none)
features += $(ATTESTER)
endif
else
features += all-attesters
endif
ifeq ($(LIBC), musl)
ifeq ($(ARCH), $(filter $(ARCH), s390x powerpc64le))
$(error ERROR: Attestation agent does not support building with the musl libc target for s390x and ppc64le architectures!)
endif
MUSL_ADD := $(shell rustup target add ${ARCH}-unknown-linux-musl)
ifeq ($(DEBIANOS), true)
MUSL_INSTALL := $(shell sudo apt-get install -y musl-tools)
endif
endif
ifneq ($(SOURCE_ARCH), $(ARCH))
# SOURCE_ARCH and target architecture(ARCH) are different on ppc64le
ifeq ($(SOURCE_ARCH), ppc64le)
$(info INFO: Ignore cross-compiling when SOURCE_ARCH is ppc64le)
else ifeq ($(DEBIANOS), true)
GCC_COMPILER_PACKAGE_FOR_TARGET_ARCH := gcc-$(ARCH)-linux-$(LIBC)
GCC_COMPILER_FOR_TARGET_ARCH := $(ARCH)-linux-$(LIBC)-gcc
RUSTC_TARGET_FOR_TARGET_ARCH := $(ARCH)-unknown-linux-$(LIBC)
GCC_FOR_TARGET_ARCH_INSTALL := $(shell sudo apt-get install -y ${GCC_COMPILER_PACKAGE_FOR_TARGET_ARCH})
RUST_TARGET_FOR_TARGET_ARCH_INSTALL := $(shell rustup target add ${RUSTC_TARGET_FOR_TARGET_ARCH})
RUSTFLAGS_ARGS += -C linker=$(GCC_COMPILER_FOR_TARGET_ARCH)
else
$(error ERROR: Cross-compiling is only tested on Debian-like OSes)
endif
endif
ifeq ($(SOURCE_ARCH), $(filter $(SOURCE_ARCH), s390x ppc64le))
ifeq ($(DEBIANOS), true)
PROTOC_BINARY_INSTALL := $(shell sudo apt-get install -y protobuf-compiler)
endif
endif
LIBC_FLAG := --target $(ARCH)-unknown-linux-$(LIBC)
TARGET_DIR := $(TARGET_DIR)/$(ARCH)-unknown-linux-$(LIBC)
ifdef DEBUG
release :=
TARGET_DIR := $(TARGET_DIR)/debug
else
release := --release
TARGET_DIR := $(TARGET_DIR)/release
endif
ifneq ($(RUSTFLAGS_ARGS),)
RUST_FLAGS := RUSTFLAGS="$(RUSTFLAGS_ARGS)"
endif
ifdef OPENSSL
features := $(features),openssl
else
features := $(features),rust-crypto
endif
ifeq ($(ARCH), s390x)
LINT_OPTION = lint-s390x
else
LINT_OPTION = lint-default
endif
build:
cd attestation-agent && $(RUST_FLAGS) cargo build $(release) --no-default-features --features "$(features)" $(binary) $(LIBC_FLAG)
mv $(TARGET_DIR)/$(binary_name) $(TARGET)
TARGET := $(TARGET_DIR)/$(BIN_NAME)
lint: $(LINT_OPTION)
lint-default:
cd attestation-agent && cargo clippy --features kbs,coco_as,bin,grpc,ttrpc,all-attesters
lint-s390x:
cd attestation-agent && cargo clippy --no-default-features --features openssl,kbs,coco_as,bin,grpc,ttrpc
install:
install -D -m0755 $(TARGET) $(DESTDIR)/$(BIN_NAME)
uninstall:
rm -f $(DESTDIR)/$(BIN_NAME)
clean:
cargo clean
help:
@echo "==========================Help========================================="
@echo "build: make [DEBUG=1] [LIBC=(musl)] [ARCH=(x86_64/s390x/ppc64le)] [OPENSSL=1] [ATTESTER=all-attesters]"
@echo "install: make install [DESTDIR=/path/to/target] [LIBC=(musl)]"