File tree Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ ROOT_OUT := $(shell mkdir -p $(O);cd $(O);pwd)
9
9
HV_OUT := $(ROOT_OUT ) /hypervisor
10
10
DM_OUT := $(ROOT_OUT ) /devicemodel
11
11
TOOLS_OUT := $(ROOT_OUT ) /tools
12
+ MISC_OUT := $(ROOT_OUT ) /misc
12
13
export TOOLS_OUT
13
14
14
- .PHONY : all hypervisor devicemodel tools
15
- all : hypervisor devicemodel tools
15
+ .PHONY : all hypervisor devicemodel tools misc
16
+ all : hypervisor devicemodel tools misc
16
17
17
18
hypervisor :
18
19
make -C $(T ) /hypervisor HV_OBJDIR=$(HV_OUT ) PLATFORM=$(PLATFORM ) RELEASE=$(RELEASE ) clean
@@ -34,12 +35,16 @@ tools:
34
35
make -C $(T ) /tools/acrntrace OUT_DIR=$(TOOLS_OUT )
35
36
make -C $(T ) /tools/acrn-crashlog OUT_DIR=$(TOOLS_OUT ) RELEASE=$(RELEASE )
36
37
38
+ misc : tools
39
+ mkdir -p $(MISC_OUT )
40
+ make -C $(T ) /misc OUT_DIR=$(MISC_OUT )
41
+
37
42
.PHONY : clean
38
43
clean :
39
44
rm -rf $(ROOT_OUT )
40
45
41
46
.PHONY : install
42
- install : hypervisor-install devicemodel-install tools-install
47
+ install : hypervisor-install devicemodel-install tools-install misc-install
43
48
44
49
hypervisor-install :
45
50
make -C $(T ) /hypervisor HV_OBJDIR=$(HV_OUT ) PLATFORM=$(PLATFORM ) RELEASE=$(RELEASE ) install
@@ -55,3 +60,6 @@ tools-install:
55
60
make -C $(T ) /tools/acrn-manager OUT_DIR=$(TOOLS_OUT ) install
56
61
make -C $(T ) /tools/acrntrace OUT_DIR=$(TOOLS_OUT ) install
57
62
make -C $(T ) /tools/acrn-crashlog OUT_DIR=$(TOOLS_OUT ) install
63
+
64
+ misc-install :
65
+ make -C $(T ) /misc OUT_DIR=$(MISC_OUT ) install
Original file line number Diff line number Diff line change
1
+ T := $(CURDIR )
2
+
3
+ .PHONY : all cbc_lifecycle
4
+ all : cbc_lifecycle
5
+
6
+ cbc_lifecycle :
7
+ make -C $(T ) /cbc_lifecycle OUT_DIR=$(OUT_DIR )
8
+
9
+ .PHONY : clean
10
+ clean :
11
+ make -C $(T ) /cbc_lifecycle clean
12
+ rm -rf $(OUT_DIR )
13
+
14
+ .PHONY : install
15
+ install : cbc_lifecycle-install
16
+
17
+ cbc_lifecycle-install :
18
+ make -C $(T ) /cbc_lifecycle OUT_DIR=$(OUT_DIR ) install
You can’t perform that action at this time.
0 commit comments