| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # | 5 # |
| 6 # GNU Make based build file. For details on GNU Make see: | 6 # GNU Make based build file. For details on GNU Make see: |
| 7 # http://www.gnu.org/software/make/manual/make.html | 7 # http://www.gnu.org/software/make/manual/make.html |
| 8 # | 8 # |
| 9 | 9 |
| 10 # | 10 # |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 $(RM) -f $(TARGET).nmf | 267 $(RM) -f $(TARGET).nmf |
| 268 $(RM) -rf $(OUTDIR) | 268 $(RM) -rf $(OUTDIR) |
| 269 $(RM) -rf user-data-dir | 269 $(RM) -rf user-data-dir |
| 270 | 270 |
| 271 | 271 |
| 272 # | 272 # |
| 273 # Rules for output directories. | 273 # Rules for output directories. |
| 274 # | 274 # |
| 275 # Output will be places in a directory name based on Toolchain and configuration | 275 # Output will be places in a directory name based on Toolchain and configuration |
| 276 # be default this will be "newlib/Debug". We use a python wrapped MKDIR to | 276 # be default this will be "newlib/Debug". We use a python wrapped MKDIR to |
| 277 # proivde a cross platform solution. The use of '|' checks for existance instead | 277 # proivde a cross platform solution. The use of '|' checks for existence instead |
| 278 # of timestamp, since the directory can update when files change. | 278 # of timestamp, since the directory can update when files change. |
| 279 # | 279 # |
| 280 %dir.stamp : | 280 %dir.stamp : |
| 281 $(MKDIR) -p $(dir $@) | 281 $(MKDIR) -p $(dir $@) |
| 282 @echo Directory Stamp > $@ | 282 @echo Directory Stamp > $@ |
| 283 | 283 |
| 284 | 284 |
| 285 # | 285 # |
| 286 # Dependency Macro | 286 # Dependency Macro |
| 287 # | 287 # |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 # uppercase aliases (for backward compatibility) | 537 # uppercase aliases (for backward compatibility) |
| 538 .PHONY: CHECK_FOR_CHROME DEBUG LAUNCH RUN | 538 .PHONY: CHECK_FOR_CHROME DEBUG LAUNCH RUN |
| 539 CHECK_FOR_CHROME: check_for_chrome | 539 CHECK_FOR_CHROME: check_for_chrome |
| 540 DEBUG: debug | 540 DEBUG: debug |
| 541 LAUNCH: run | 541 LAUNCH: run |
| 542 RUN: run | 542 RUN: run |
| 543 | 543 |
| 544 endif # TOOLCHAIN is valid... | 544 endif # TOOLCHAIN is valid... |
| 545 | 545 |
| 546 endif # TOOLCHAIN=all | 546 endif # TOOLCHAIN=all |
| OLD | NEW |