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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 # | 158 # |
159 # HTML file generation | 159 # HTML file generation |
160 # | 160 # |
161 CREATE_HTML := python $(NACL_SDK_ROOT)/tools/create_html.py | 161 CREATE_HTML := python $(NACL_SDK_ROOT)/tools/create_html.py |
162 | 162 |
163 define HTML_RULE | 163 define HTML_RULE |
164 all: $(OUTDIR)/$(1).html | 164 all: $(OUTDIR)/$(1).html |
165 $(OUTDIR)/$(1).html: $(OUTDIR)/$(1).pexe | 165 $(OUTDIR)/$(1).html: $(OUTDIR)/$(1).pexe |
166 $(call LOG,CREATE_HTML,$$@,$(CREATE_HTML) -o $$@ $$^) | 166 $(call LOG,CREATE_HTML,$$@,$(CREATE_HTML) -o $$@ $$^) |
167 endef | 167 endef |
| 168 |
| 169 |
| 170 # |
| 171 # Determine which executable to pass into the debugger. For pnacl, this is |
| 172 # the .bc -> .nexe translated app. |
| 173 # |
| 174 GDB_DEBUG_TARGET = $(abspath $(OUTDIR))/$(TARGET)_$(SYSARCH).nexe |
OLD | NEW |