| OLD | NEW |
| 1 # Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 # Copyright 2014 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 # GNU Makefile based on shared rules provided by the Native Client SDK. | 5 # GNU Makefile based on shared rules provided by the Native Client SDK. |
| 6 # See README.Makefiles for more details. | 6 # See README.Makefiles for more details. |
| 7 | 7 |
| 8 # In order to build with newlib by default change "pnacl newlib" to | 8 # In order to build with newlib by default change "pnacl newlib" to |
| 9 # "newlib pnacl" or use make VAILD_TOOLCHAINS=newlib. | 9 # "newlib pnacl" or use make VAILD_TOOLCHAINS=newlib. |
| 10 VALID_TOOLCHAINS := pnacl newlib | 10 VALID_TOOLCHAINS := pnacl newlib |
| 11 | 11 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 42 endif | 42 endif |
| 43 | 43 |
| 44 $(eval $(call NMF_RULE,$(TARGET),)) | 44 $(eval $(call NMF_RULE,$(TARGET),)) |
| 45 | 45 |
| 46 # Debug rule for testing. make debug will try to run Chrome with index.html, | 46 # Debug rule for testing. make debug will try to run Chrome with index.html, |
| 47 # but there is no index.html. Every rule that constains "debug" will build and | 47 # but there is no index.html. Every rule that constains "debug" will build and |
| 48 # use the debug executables (see #line 113 from $NACL_SDK_ROOT/tools/common.mk | 48 # use the debug executables (see #line 113 from $NACL_SDK_ROOT/tools/common.mk |
| 49 # with findstring). | 49 # with findstring). |
| 50 .PHONY: debug | 50 .PHONY: debug |
| 51 debug: all | 51 debug: all |
| OLD | NEW |