-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathMakefile
More file actions
56 lines (41 loc) · 1.35 KB
/
Makefile
File metadata and controls
56 lines (41 loc) · 1.35 KB
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
#
# Copyright(c) 2011-2025 Intel Corporation
#
# SPDX-License-Identifier: BSD-3-Clause
#
CUR_MKFILE:= $(lastword $(MAKEFILE_LIST))
.PHONY: all clean rebuild QuoteGeneration QuoteVerification PCKCertSelection PCKRetrievalTool SGXPlatformRegistration PckClientTool WinPle WinPleIntel
all: QuoteGeneration QuoteVerification PCKCertSelection PCKRetrievalTool SGXPlatformRegistration PckClientTool WinPle WinPleIntel ThirdParty
ThirdParty:
$(MAKE) -C external
QuoteGeneration: QuoteVerification
$(MAKE) -C QuoteGeneration
QuoteVerification:
$(MAKE) -C QuoteVerification
PCKCertSelection:
$(MAKE) -C tools/PCKCertSelection
PCKRetrievalTool: QuoteGeneration
$(MAKE) -C tools/PCKRetrievalTool
SGXPlatformRegistration: ThirdParty
$(MAKE) -C tools/SGXPlatformRegistration
PckClientTool:
$(MAKE) -C tools/PcsClientTool
WinPle:
$(MAKE) -C driver/win/PLE
WinPleIntel:
$(MAKE) -C driver/win/PLE INTEL_SIGNED=1
clean:
$(MAKE) -C external clean
$(MAKE) -C QuoteGeneration clean
$(MAKE) -C QuoteVerification clean
$(MAKE) -C tools/PCKCertSelection clean
$(MAKE) -C tools/PCKRetrievalTool clean
$(MAKE) -C tools/SGXPlatformRegistration clean
$(MAKE) -C tools/PcsClientTool clean
$(MAKE) -C driver/win/PLE clean
$(MAKE) -C driver/win/PLE INTEL_SIGNED=1 clean
rebuild:
$(MAKE) -f $(CUR_MKFILE) clean
$(MAKE) -f $(CUR_MKFILE) all
test:
$(MAKE) -C tools/PcsClientTool test