Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 1 | # ****************************************************************************** |
| 2 | # *** This file is generated and should not be edited *** |
| 3 | # ****************************************************************************** |
| 4 | # |
| 5 | # This file contains variables, rules, and pools with name prefixes indicating |
| 6 | # they were generated by the following Go packages: |
| 7 | # |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 8 | # bootstrap [from Go package github.com/google/blueprint/bootstrap] |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 9 | # |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 10 | ninja_required_version = 1.6.0 |
| 11 | |
| 12 | g.bootstrap.buildDir = @@BuildDir@@ |
| 13 | |
| 14 | g.bootstrap.BinDir = ${g.bootstrap.buildDir}/.bootstrap/bin |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 15 | |
| 16 | g.bootstrap.bootstrapCmd = @@Bootstrap@@ |
| 17 | |
| 18 | g.bootstrap.bootstrapManifest = @@BootstrapManifest@@ |
| 19 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 20 | g.bootstrap.chooseStageCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/choosestage |
| 21 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 22 | g.bootstrap.compileCmd = @@GoCompile@@ |
| 23 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 24 | g.bootstrap.goRoot = @@GoRoot@@ |
| 25 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 26 | g.bootstrap.goTestMainCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/gotestmain |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 27 | |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 28 | g.bootstrap.goTestRunnerCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/gotestrunner |
| 29 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 30 | g.bootstrap.linkCmd = @@GoLink@@ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 31 | |
| 32 | g.bootstrap.srcDir = @@SrcDir@@ |
| 33 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 34 | builddir = ${g.bootstrap.buildDir}/.minibootstrap |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 35 | |
| 36 | rule g.bootstrap.bootstrap |
Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 37 | command = BUILDDIR=${g.bootstrap.buildDir} ${g.bootstrap.bootstrapCmd} -i ${in} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 38 | description = bootstrap ${in} |
| 39 | generator = true |
| 40 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 41 | rule g.bootstrap.chooseStage |
| 42 | command = ${g.bootstrap.chooseStageCmd} --current ${current} --bootstrap ${g.bootstrap.bootstrapManifest} -o ${out} ${in} |
| 43 | description = choosing next stage |
| 44 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 45 | rule g.bootstrap.compile |
| 46 | command = GOROOT='${g.bootstrap.goRoot}' ${g.bootstrap.compileCmd} -o ${out} -p ${pkgPath} -complete ${incFlags} -pack ${in} |
| 47 | description = compile ${out} |
| 48 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 49 | rule g.bootstrap.cp |
| 50 | command = cp ${in} ${out} |
| 51 | description = cp ${out} |
| 52 | |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 53 | rule g.bootstrap.gotestmain |
| 54 | command = ${g.bootstrap.goTestMainCmd} -o ${out} -pkg ${pkg} ${in} |
| 55 | description = gotestmain ${out} |
| 56 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 57 | rule g.bootstrap.link |
| 58 | command = GOROOT='${g.bootstrap.goRoot}' ${g.bootstrap.linkCmd} -o ${out} ${libDirFlags} ${in} |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 59 | description = link ${out} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 60 | |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 61 | rule g.bootstrap.test |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 62 | command = ${g.bootstrap.goTestRunnerCmd} -p ${pkgSrcDir} -f ${out} -- ${in} -test.short |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 63 | description = test ${pkg} |
| 64 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 65 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 66 | # Module: blueprint |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 67 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 68 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 69 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 70 | # Defined: build/blueprint/Blueprints:1:1 |
| 71 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 72 | build $ |
| 73 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 74 | : g.bootstrap.compile ${g.bootstrap.srcDir}/build/blueprint/context.go $ |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 75 | ${g.bootstrap.srcDir}/build/blueprint/fs.go $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 76 | ${g.bootstrap.srcDir}/build/blueprint/live_tracker.go $ |
| 77 | ${g.bootstrap.srcDir}/build/blueprint/mangle.go $ |
| 78 | ${g.bootstrap.srcDir}/build/blueprint/module_ctx.go $ |
| 79 | ${g.bootstrap.srcDir}/build/blueprint/ninja_defs.go $ |
| 80 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings.go $ |
| 81 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer.go $ |
| 82 | ${g.bootstrap.srcDir}/build/blueprint/package_ctx.go $ |
| 83 | ${g.bootstrap.srcDir}/build/blueprint/scope.go $ |
| 84 | ${g.bootstrap.srcDir}/build/blueprint/singleton_ctx.go $ |
| 85 | ${g.bootstrap.srcDir}/build/blueprint/unpack.go $ |
| 86 | ${g.bootstrap.srcDir}/build/blueprint/context_test.go $ |
| 87 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings_test.go $ |
| 88 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer_test.go $ |
| 89 | ${g.bootstrap.srcDir}/build/blueprint/splice_modules_test.go $ |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 90 | ${g.bootstrap.srcDir}/build/blueprint/unpack_test.go $ |
| 91 | ${g.bootstrap.srcDir}/build/blueprint/visit_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 92 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 93 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 94 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 95 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a |
| 96 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 97 | pkgPath = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 98 | default $ |
| 99 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 100 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 101 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go: $ |
| 102 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 103 | ${g.bootstrap.srcDir}/build/blueprint/context_test.go $ |
| 104 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings_test.go $ |
| 105 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer_test.go $ |
| 106 | ${g.bootstrap.srcDir}/build/blueprint/splice_modules_test.go $ |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 107 | ${g.bootstrap.srcDir}/build/blueprint/unpack_test.go $ |
| 108 | ${g.bootstrap.srcDir}/build/blueprint/visit_test.go | $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 109 | ${g.bootstrap.goTestMainCmd} |
| 110 | pkg = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 111 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 112 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 113 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a: $ |
| 114 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 115 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 116 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 117 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a |
| 118 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 119 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 120 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 121 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 122 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test: g.bootstrap.link $ |
| 123 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a | $ |
| 124 | ${g.bootstrap.linkCmd} |
| 125 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint/test -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
| 126 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 127 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 128 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed: $ |
| 129 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 130 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test | $ |
| 131 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 132 | pkg = github.com/google/blueprint |
| 133 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 134 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 135 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 136 | build $ |
| 137 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 138 | : g.bootstrap.compile ${g.bootstrap.srcDir}/build/blueprint/context.go $ |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 139 | ${g.bootstrap.srcDir}/build/blueprint/fs.go $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 140 | ${g.bootstrap.srcDir}/build/blueprint/live_tracker.go $ |
| 141 | ${g.bootstrap.srcDir}/build/blueprint/mangle.go $ |
| 142 | ${g.bootstrap.srcDir}/build/blueprint/module_ctx.go $ |
| 143 | ${g.bootstrap.srcDir}/build/blueprint/ninja_defs.go $ |
| 144 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings.go $ |
| 145 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer.go $ |
| 146 | ${g.bootstrap.srcDir}/build/blueprint/package_ctx.go $ |
| 147 | ${g.bootstrap.srcDir}/build/blueprint/scope.go $ |
| 148 | ${g.bootstrap.srcDir}/build/blueprint/singleton_ctx.go $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 149 | ${g.bootstrap.srcDir}/build/blueprint/unpack.go | $ |
| 150 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 151 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 152 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 153 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 154 | || ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed |
| 155 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 156 | pkgPath = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 157 | default $ |
| 158 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 159 | |
| 160 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 161 | # Module: blueprint-bootstrap |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 162 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 163 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 164 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 165 | # Defined: build/blueprint/Blueprints:83:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 166 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 167 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 168 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 169 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 170 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/bootstrap.go $ |
| 171 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/cleanup.go $ |
| 172 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/command.go $ |
| 173 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/config.go $ |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 174 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/doc.go $ |
| 175 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/writedocs.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 176 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 177 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 178 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 179 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 180 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
| 181 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
| 182 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a |
| 183 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 184 | pkgPath = github.com/google/blueprint/bootstrap |
| 185 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 186 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 187 | |
| 188 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 189 | # Module: blueprint-bootstrap-bpdoc |
| 190 | # Variant: |
| 191 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 192 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 193 | # Defined: build/blueprint/Blueprints:102:1 |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 194 | |
| 195 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 196 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 197 | : g.bootstrap.compile $ |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 198 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/bpdoc/bpdoc.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 199 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 200 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 201 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 202 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 203 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a |
| 204 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 205 | pkgPath = github.com/google/blueprint/bootstrap/bpdoc |
| 206 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 207 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 208 | |
| 209 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 210 | # Module: blueprint-deptools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 211 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 212 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 213 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 214 | # Defined: build/blueprint/Blueprints:49:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 215 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 216 | build $ |
| 217 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 218 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 219 | ${g.bootstrap.srcDir}/build/blueprint/deptools/depfile.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 220 | ${g.bootstrap.compileCmd} |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 221 | pkgPath = github.com/google/blueprint/deptools |
| 222 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 223 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 224 | |
| 225 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 226 | # Module: blueprint-parser |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 227 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 228 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 229 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 230 | # Defined: build/blueprint/Blueprints:33:1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 231 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 232 | build $ |
| 233 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 234 | : g.bootstrap.compile $ |
Colin Cross | d20b36b | 2016-06-07 13:54:35 -0700 | [diff] [blame] | 235 | ${g.bootstrap.srcDir}/build/blueprint/parser/ast.go $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 236 | ${g.bootstrap.srcDir}/build/blueprint/parser/modify.go $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 237 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser.go $ |
| 238 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer.go $ |
| 239 | ${g.bootstrap.srcDir}/build/blueprint/parser/sort.go $ |
| 240 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser_test.go $ |
| 241 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 242 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 243 | pkgPath = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 244 | default $ |
| 245 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 246 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 247 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go: $ |
| 248 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 249 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser_test.go $ |
| 250 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer_test.go | $ |
| 251 | ${g.bootstrap.goTestMainCmd} |
| 252 | pkg = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 253 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 254 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 255 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 256 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 257 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 258 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 259 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a |
| 260 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 261 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 262 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 263 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 264 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test: $ |
| 265 | g.bootstrap.link $ |
| 266 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a | $ |
| 267 | ${g.bootstrap.linkCmd} |
| 268 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test |
| 269 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 270 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 271 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed: $ |
| 272 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 273 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test | $ |
| 274 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 275 | pkg = github.com/google/blueprint/parser |
| 276 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 277 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 278 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 279 | build $ |
| 280 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 281 | : g.bootstrap.compile $ |
Colin Cross | d20b36b | 2016-06-07 13:54:35 -0700 | [diff] [blame] | 282 | ${g.bootstrap.srcDir}/build/blueprint/parser/ast.go $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 283 | ${g.bootstrap.srcDir}/build/blueprint/parser/modify.go $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 284 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser.go $ |
| 285 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer.go $ |
| 286 | ${g.bootstrap.srcDir}/build/blueprint/parser/sort.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 287 | ${g.bootstrap.compileCmd} || $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 288 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 289 | pkgPath = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 290 | default $ |
| 291 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 292 | |
| 293 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 294 | # Module: blueprint-pathtools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 295 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 296 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 297 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 298 | # Defined: build/blueprint/Blueprints:55:1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 299 | |
| 300 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 301 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 302 | : g.bootstrap.compile $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 303 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/lists.go $ |
| 304 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob.go $ |
| 305 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 306 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 307 | pkgPath = github.com/google/blueprint/pathtools |
| 308 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 309 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 310 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 311 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go: $ |
| 312 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 313 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob_test.go | $ |
| 314 | ${g.bootstrap.goTestMainCmd} |
| 315 | pkg = github.com/google/blueprint/pathtools |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 316 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 317 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 318 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 319 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 320 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 321 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 322 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a |
| 323 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 324 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 325 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 326 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 327 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test: $ |
| 328 | g.bootstrap.link $ |
| 329 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a | $ |
| 330 | ${g.bootstrap.linkCmd} |
| 331 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test |
| 332 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 333 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 334 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed: $ |
| 335 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 336 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test | $ |
| 337 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 338 | pkg = github.com/google/blueprint/pathtools |
| 339 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/pathtools |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 340 | default $ |
| 341 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 342 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 343 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 344 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 345 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 346 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/lists.go $ |
| 347 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 348 | ${g.bootstrap.compileCmd} || $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 349 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 350 | pkgPath = github.com/google/blueprint/pathtools |
| 351 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 352 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 353 | |
| 354 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 355 | # Module: blueprint-proptools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 356 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 357 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 358 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 359 | # Defined: build/blueprint/Blueprints:67:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 360 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 361 | build $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame] | 362 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a $ |
| 363 | : g.bootstrap.compile $ |
| 364 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone.go $ |
| 365 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend.go $ |
| 366 | ${g.bootstrap.srcDir}/build/blueprint/proptools/proptools.go $ |
| 367 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal.go $ |
| 368 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone_test.go $ |
| 369 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend_test.go $ |
| 370 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal_test.go | $ |
| 371 | ${g.bootstrap.compileCmd} |
| 372 | pkgPath = github.com/google/blueprint/proptools |
| 373 | default $ |
| 374 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
| 375 | |
| 376 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go: $ |
| 377 | g.bootstrap.gotestmain $ |
| 378 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone_test.go $ |
| 379 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend_test.go $ |
| 380 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal_test.go | $ |
| 381 | ${g.bootstrap.goTestMainCmd} |
| 382 | pkg = github.com/google/blueprint/proptools |
| 383 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go |
| 384 | |
| 385 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a: $ |
| 386 | g.bootstrap.compile $ |
| 387 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go | $ |
| 388 | ${g.bootstrap.compileCmd} $ |
| 389 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
| 390 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test |
| 391 | pkgPath = main |
| 392 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a |
| 393 | |
| 394 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test: $ |
| 395 | g.bootstrap.link $ |
| 396 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a | $ |
| 397 | ${g.bootstrap.linkCmd} |
| 398 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test |
| 399 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test |
| 400 | |
| 401 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed: $ |
| 402 | g.bootstrap.test $ |
| 403 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test | $ |
| 404 | ${g.bootstrap.goTestRunnerCmd} |
| 405 | pkg = github.com/google/blueprint/proptools |
| 406 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/proptools |
| 407 | default $ |
| 408 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed |
| 409 | |
| 410 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 411 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 412 | : g.bootstrap.compile $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame] | 413 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone.go $ |
| 414 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend.go $ |
| 415 | ${g.bootstrap.srcDir}/build/blueprint/proptools/proptools.go $ |
| 416 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal.go | $ |
| 417 | ${g.bootstrap.compileCmd} || $ |
| 418 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 419 | pkgPath = github.com/google/blueprint/proptools |
| 420 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 421 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 422 | |
| 423 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 424 | # Module: choosestage |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 425 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 426 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 427 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 428 | # Defined: build/blueprint/Blueprints:145:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 429 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 430 | build ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 431 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 432 | ${g.bootstrap.srcDir}/build/blueprint/choosestage/choosestage.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 433 | ${g.bootstrap.compileCmd} |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 434 | pkgPath = choosestage |
| 435 | default ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 436 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 437 | build ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out: $ |
| 438 | g.bootstrap.link $ |
| 439 | ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a | $ |
| 440 | ${g.bootstrap.linkCmd} |
| 441 | default ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out |
Colin Cross | 6ba99aa | 2015-11-23 14:09:17 -0800 | [diff] [blame] | 442 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 443 | build ${g.bootstrap.BinDir}/choosestage: g.bootstrap.cp $ |
| 444 | ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out |
| 445 | default ${g.bootstrap.BinDir}/choosestage |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 446 | |
| 447 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 448 | # Module: gotestmain |
| 449 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 450 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 451 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 452 | # Defined: build/blueprint/Blueprints:135:1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 453 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 454 | build ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 455 | g.bootstrap.compile $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 456 | ${g.bootstrap.srcDir}/build/blueprint/gotestmain/gotestmain.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 457 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 458 | pkgPath = gotestmain |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 459 | default ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 460 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 461 | build ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out: $ |
| 462 | g.bootstrap.link $ |
| 463 | ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a | $ |
| 464 | ${g.bootstrap.linkCmd} |
| 465 | default ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out |
Colin Cross | 6ba99aa | 2015-11-23 14:09:17 -0800 | [diff] [blame] | 466 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 467 | build ${g.bootstrap.BinDir}/gotestmain: g.bootstrap.cp $ |
| 468 | ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out |
| 469 | default ${g.bootstrap.BinDir}/gotestmain |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 470 | |
| 471 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 472 | # Module: gotestrunner |
| 473 | # Variant: |
| 474 | # Type: bootstrap_core_go_binary |
| 475 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 476 | # Defined: build/blueprint/Blueprints:140:1 |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 477 | |
| 478 | build ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a: $ |
| 479 | g.bootstrap.compile $ |
| 480 | ${g.bootstrap.srcDir}/build/blueprint/gotestrunner/gotestrunner.go | $ |
| 481 | ${g.bootstrap.compileCmd} |
| 482 | pkgPath = gotestrunner |
| 483 | default ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a |
| 484 | |
| 485 | build ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out: $ |
| 486 | g.bootstrap.link $ |
| 487 | ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a | $ |
| 488 | ${g.bootstrap.linkCmd} |
| 489 | default ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out |
Colin Cross | 6ba99aa | 2015-11-23 14:09:17 -0800 | [diff] [blame] | 490 | |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 491 | build ${g.bootstrap.BinDir}/gotestrunner: g.bootstrap.cp $ |
| 492 | ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out |
| 493 | default ${g.bootstrap.BinDir}/gotestrunner |
| 494 | |
| 495 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 496 | # Module: minibp |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 497 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 498 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 499 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 6debdba | 2016-08-08 12:58:36 -0700 | [diff] [blame] | 500 | # Defined: build/blueprint/Blueprints:114:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 501 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 502 | build ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a: $ |
| 503 | g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 504 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/minibp/main.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 505 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 506 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 507 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 508 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 509 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
| 510 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
| 511 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a $ |
| 512 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a |
| 513 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 514 | pkgPath = minibp |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 515 | default ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 516 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 517 | build ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out: g.bootstrap.link $ |
| 518 | ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a | $ |
| 519 | ${g.bootstrap.linkCmd} |
| 520 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg |
| 521 | default ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 522 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 523 | build ${g.bootstrap.BinDir}/minibp: g.bootstrap.cp $ |
| 524 | ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out |
| 525 | default ${g.bootstrap.BinDir}/minibp |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 526 | |
| 527 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 528 | # Singleton: bootstrap |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 529 | # Factory: github.com/google/blueprint/bootstrap.newSingletonFactory.func1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 530 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 531 | rule s.bootstrap.primarybp |
| 532 | command = ${g.bootstrap.BinDir}/minibp --build-primary ${runTests} -m ${g.bootstrap.bootstrapManifest} --timestamp ${timestamp} --timestampdep ${timestampdep} -b ${g.bootstrap.buildDir} -d ${outfile}.d -o ${outfile} ${in} |
| 533 | depfile = ${outfile}.d |
| 534 | description = minibp ${outfile} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 535 | |
| 536 | rule s.bootstrap.minibp |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 537 | command = ${g.bootstrap.BinDir}/minibp ${runTests} -m ${g.bootstrap.bootstrapManifest} -b ${g.bootstrap.buildDir} -d ${out}.d -o ${out} ${in} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 538 | depfile = ${out}.d |
| 539 | description = minibp ${out} |
| 540 | generator = true |
| 541 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 542 | build ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in $ |
| 543 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp: $ |
| 544 | s.bootstrap.primarybp ${g.bootstrap.srcDir}/Android.bp | $ |
| 545 | ${g.bootstrap.BinDir}/choosestage ${g.bootstrap.BinDir}/gotestmain $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 546 | ${g.bootstrap.BinDir}/gotestrunner ${g.bootstrap.BinDir}/minibp $ |
| 547 | ${g.bootstrap.srcDir}/Android.bp $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 548 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a $ |
| 549 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame] | 550 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a $ |
| 551 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 552 | outfile = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 553 | runTests = -t |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 554 | timestamp = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp |
| 555 | timestampdep = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp.d |
| 556 | default ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in $ |
| 557 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp |
| 558 | |
| 559 | build ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in: $ |
| 560 | s.bootstrap.minibp ${g.bootstrap.srcDir}/Android.bp | $ |
| 561 | ${g.bootstrap.bootstrapManifest} ${g.bootstrap.BinDir}/minibp |
| 562 | runTests = -t |
| 563 | default ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in |
| 564 | |
| 565 | build ${g.bootstrap.buildDir}/.bootstrap/notAFile: phony |
| 566 | default ${g.bootstrap.buildDir}/.bootstrap/notAFile |
Colin Cross | 6ba99aa | 2015-11-23 14:09:17 -0800 | [diff] [blame] | 567 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 568 | build ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in: $ |
| 569 | g.bootstrap.chooseStage $ |
| 570 | ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in $ |
| 571 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in | $ |
| 572 | ${g.bootstrap.chooseStageCmd} ${g.bootstrap.bootstrapManifest} $ |
| 573 | ${g.bootstrap.buildDir}/.bootstrap/notAFile |
| 574 | current = ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in |
| 575 | default ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in |
| 576 | |
| 577 | build ${g.bootstrap.buildDir}/build.ninja: g.bootstrap.bootstrap $ |
| 578 | ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in | $ |
| 579 | ${g.bootstrap.bootstrapCmd} |
| 580 | default ${g.bootstrap.buildDir}/build.ninja |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 581 | |