Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: native_client_sdk/src/resources/Makefile.index.template

Issue 806283003: [NaCl SDK] Always use cmd.exe for SHELL in Windows Makefiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops, typo Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | native_client_sdk/src/tools/common.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # Always use cmd.exe as the shell on Windows. Otherwise Make may try to search
11 # the path for sh.exe. If it is found in a path with a space, the command will
12 # fail.
13 ifeq ($(OS),Windows_NT)
14 SHELL := cmd.exe
15 endif
16
10 PROJECTS := \ 17 PROJECTS := \
11 [[for project in projects:]] 18 [[for project in projects:]]
12 {{project}} \ 19 {{project}} \
13 [[]] 20 [[]]
14 21
15 [[for dep,vals in deps.iteritems():]] 22 [[for dep,vals in deps.iteritems():]]
16 {{dep}}_DEPS:={{'_ALL_TARGET '.join(vals) + '_ALL_TARGET'}} 23 {{dep}}_DEPS:={{'_ALL_TARGET '.join(vals) + '_ALL_TARGET'}}
17 [[]] 24 [[]]
18 25
19 HTTPD_PY := python {{rel_sdk}}/tools/httpd.py 26 HTTPD_PY := python {{rel_sdk}}/tools/httpd.py
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 @$(HTTPD_PY) 71 @$(HTTPD_PY)
65 72
66 # Phony aliases for backward compatibility 73 # Phony aliases for backward compatibility
67 RUN: run 74 RUN: run
68 run: serve 75 run: serve
69 76
70 all_versions: 77 all_versions:
71 +$(MAKE) TOOLCHAIN=all 78 +$(MAKE) TOOLCHAIN=all
72 79
73 .PHONY: RUN all_versions 80 .PHONY: RUN all_versions
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/tools/common.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698