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

Side by Side Diff: native_client_sdk/src/tools/host_vc.mk

Issue 11946039: Fix missing $ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « native_client_sdk/src/tools/host_gcc.mk ('k') | no next file » | 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 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 # 63 #
64 # LIB Macro 64 # LIB Macro
65 # 65 #
66 # $1 = Target Name 66 # $1 = Target Name
67 # $2 = List of Sources 67 # $2 = List of Sources
68 # 68 #
69 # 69 #
70 define LIB_RULE 70 define LIB_RULE
71 all:$(NACL_SDK_ROOT)/lib/$(OSNAME)_host/$(CONFIG)/$(1).lib 71 all:$(NACL_SDK_ROOT)/lib/$(OSNAME)_host/$(CONFIG)/$(1).lib
72 $(NACL_SDK_ROOT)/lib/$(OSNAME)_host/$(CONFIG)/$(1).lib : $(foreach src,$(2),$(OU TDIR)/$(basename $(src)).o) 72 $(NACL_SDK_ROOT)/lib/$(OSNAME)_host/$(CONFIG)/$(1).lib : $(foreach src,$(2),$(OU TDIR)/$(basename $(src)).o)
73 » $(MKDIR) -p $(dir $$@) 73 » $(MKDIR) -p $$(dir $$@)
74 $(HOST_LIB) $$@ $$^ $(WIN_LDFLAGS) 74 $(HOST_LIB) $$@ $$^ $(WIN_LDFLAGS)
75 endef 75 endef
76 76
77 77
78 # 78 #
79 # Link Macro 79 # Link Macro
80 # 80 #
81 # $1 = Target Name 81 # $1 = Target Name
82 # $2 = List of inputs 82 # $2 = List of inputs
83 # $3 = List of libs 83 # $3 = List of libs
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 NMF:=python $(NACL_SDK_ROOT)/tools/create_nmf.py 121 NMF:=python $(NACL_SDK_ROOT)/tools/create_nmf.py
122 122
123 define NMF_RULE 123 define NMF_RULE
124 NMF_LIST+=$(OUTDIR)/$(1).nmf 124 NMF_LIST+=$(OUTDIR)/$(1).nmf
125 $(OUTDIR)/$(1).nmf : $(OUTDIR)/$(1)$(HOST_EXT) 125 $(OUTDIR)/$(1).nmf : $(OUTDIR)/$(1)$(HOST_EXT)
126 @echo "Host Toolchain" > $$@ 126 @echo "Host Toolchain" > $$@
127 endef 127 endef
128 128
129 all : $(LIB_LIST) $(DEPS_LIST) $(NMF_LIST) 129 all : $(LIB_LIST) $(DEPS_LIST) $(NMF_LIST)
130 130
OLDNEW
« no previous file with comments | « native_client_sdk/src/tools/host_gcc.mk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698