This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
build.ninja
190 lines (174 loc) · 5.5 KB
/
build.ninja
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE.md file.
rule gyp
command = $
GYP_CROSSCOMPILE=1 $
third_party/gyp/gyp --depth=. -Idefault_targets.gypi $
-Goutput_dir=out $
--format=ninja dartino.gyp
rule gyp-lk
command = $
GYP_CROSSCOMPILE=1 $
./third_party/gyp/gyp --depth=. -Ilk_targets.gypi $
-Goutput_dir=out $
--format=ninja dartino.gyp
rule gyp-mbed
command = $
GYP_CROSSCOMPILE=1 $
./third_party/gyp/gyp --depth=. -Imbed_targets.gypi $
-Goutput_dir=out $
--format=ninja dartino.gyp
rule gyp-stm
command = $
GYP_CROSSCOMPILE=1 $
./third_party/gyp/gyp --depth=. -Isrc/freertos/stm_targets.gypi $
-Goutput_dir=out $
--format=ninja src/freertos/stm.gyp
rule gyp-cm4
command = $
GYP_CROSSCOMPILE=1 $
./third_party/gyp/gyp --depth=. -Isrc/freertos/cm4_targets.gypi $
-Goutput_dir=out $
--format=ninja src/freertos/cm4.gyp
build $
out/DebugIA32/build.ninja $
out/DebugIA32Asan/build.ninja $
out/DebugIA32Clang/build.ninja $
out/DebugIA32ClangAsan/build.ninja $
out/DebugX64/build.ninja $
out/DebugX64Asan/build.ninja $
out/DebugX64Clang/build.ninja $
out/DebugX64ClangAsan/build.ninja $
out/DebugARM/build.ninja $
out/DebugXARM/build.ninja $
out/DebugXARM64/build.ninja $
out/ReleaseIA32/build.ninja $
out/ReleaseIA32Asan/build.ninja $
out/ReleaseIA32Clang/build.ninja $
out/ReleaseIA32ClangAsan/build.ninja $
out/ReleaseX64/build.ninja $
out/ReleaseX64Asan/build.ninja $
out/ReleaseX64Clang/build.ninja $
out/ReleaseX64ClangAsan/build.ninja $
out/ReleaseARM/build.ninja $
out/ReleaseXARM/build.ninja $
out/ReleaseXARM64/build.ninja: $
gyp $
common.gypi $
version.gyp $
default_targets.gypi $
dartino.gyp $
src/freertos/freertos_dartino_host_tests.gyp $
src/double_conversion.gyp $
src/shared/shared.gyp $
src/tools/driver/driver.gyp $
src/tools/flashtool/flashtool.gyp $
src/vm/vm.gyp $
src/pkg/mdns/mdns.gyp $
src/pkg/power_management/power_management.gyp $
src/pkg/mbedtls/mbedtls.gyp $
src/pkg/serial_port/serial_port.gyp $
build gyp: phony$
out/DebugIA32/build.ninja $
out/DebugIA32Asan/build.ninja $
out/DebugIA32Clang/build.ninja $
out/DebugIA32ClangAsan/build.ninja $
out/DebugX64/build.ninja $
out/DebugX64Asan/build.ninja $
out/DebugX64Clang/build.ninja $
out/DebugX64ClangAsan/build.ninja $
out/DebugARM/build.ninja $
out/DebugXARM/build.ninja $
out/DebugXARM64/build.ninja $
out/ReleaseIA32/build.ninja $
out/ReleaseIA32Asan/build.ninja $
out/ReleaseIA32Clang/build.ninja $
out/ReleaseIA32ClangAsan/build.ninja $
out/ReleaseX64/build.ninja $
out/ReleaseX64Asan/build.ninja $
out/ReleaseX64Clang/build.ninja $
out/ReleaseX64ClangAsan/build.ninja $
out/ReleaseARM/build.ninja $
out/ReleaseXARM/build.ninja $
out/ReleaseXARM64/build.ninja
build $
out/DebugLK/build.ninja $
out/ReleaseLK/build.ninja: $
gyp-lk $
common.gypi $
version.gyp $
lk_targets.gypi $
dartino.gyp $
src/double_conversion.gyp $
src/shared/shared.gyp $
src/tools/driver/driver.gyp $
src/tools/flashtool/flashtool.gyp $
src/vm/vm.gyp $
build lk: phony$
out/DebugLK/build.ninja $
out/ReleaseLK/build.ninja $
build $
out/DebugMBED/build.ninja $
out/ReleaseMBED/build.ninja: $
gyp-mbed $
common.gypi $
version.gyp $
mbed_targets.gypi $
dartino.gyp $
src/double_conversion.gyp $
src/shared/shared.gyp $
src/tools/driver/driver.gyp $
src/tools/flashtool/flashtool.gyp $
src/vm/vm.gyp $
build mbed: phony$
out/DebugMBED/build.ninja $
out/ReleaseMBED/build.ninja $
build $
out/DebugSTM/build.ninja $
out/ReleaseSTM/build.ninja: $
gyp-stm $
common.gypi $
version.gyp $
src/freertos/stm_targets.gypi $
src/freertos/stm.gyp $
src/freertos/free_rtos_sources.gypi $
src/freertos/stm32_cube_f7_demos.gyp $
src/freertos/lwip_sources.gypi $
src/freertos/disco_dartino.gyp $
src/freertos/freertos_dartino.gyp $
dartino.gyp $
src/double_conversion.gyp $
src/shared/shared.gyp $
src/tools/driver/driver.gyp $
src/tools/flashtool/flashtool.gyp $
src/vm/vm.gyp $
src/pkg/mbedtls/mbedtls_static.gyp $
build stm: phony$
out/DebugSTM/build.ninja $
out/ReleaseSTM/build.ninja $
build $
out/DebugCM4/build.ninja $
out/ReleaseCM4/build.ninja $
out/DebugCM4F/build.ninja $
out/ReleaseCM4F/build.ninja: $
gyp-cm4 $
common.gypi $
version.gyp $
src/freertos/cm4_targets.gypi $
src/freertos/cm4.gyp $
src/freertos/free_rtos_sources.gypi $
src/freertos/stm32_cube_f4_demos.gyp $
src/freertos/nucleo_dartino.gyp $
dartino.gyp $
src/double_conversion.gyp $
src/shared/shared.gyp $
src/tools/driver/driver.gyp $
src/vm/vm.gyp $
src/pkg/mbedtls/mbedtls_static.gyp $
build cm4: phony$
out/DebugCM4/build.ninja $
out/ReleaseCM4/build.ninja $
out/DebugCM4F/build.ninja $
out/ReleaseCM4F/build.ninja $
default gyp stm cm4