1 | # $Id: VCC80AMD64.kmk 1350 2007-12-03 01:03:09Z bird $
|
---|
2 | ## @file
|
---|
3 | #
|
---|
4 | # kBuild Tool Config - Visual C++ 8.0 (aka Visual .NET 2005, or MSC v14), targeting AMD64.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2004-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net>
|
---|
7 | #
|
---|
8 | #
|
---|
9 | # This file is part of kBuild.
|
---|
10 | #
|
---|
11 | # kBuild is free software; you can redistribute it and/or modify
|
---|
12 | # it under the terms of the GNU General Public License as published by
|
---|
13 | # the Free Software Foundation; either version 2 of the License, or
|
---|
14 | # (at your option) any later version.
|
---|
15 | #
|
---|
16 | # kBuild is distributed in the hope that it will be useful,
|
---|
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | # GNU General Public License for more details.
|
---|
20 | #
|
---|
21 | # You should have received a copy of the GNU General Public License
|
---|
22 | # along with kBuild; if not, write to the Free Software
|
---|
23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
24 | #
|
---|
25 | #
|
---|
26 |
|
---|
27 | TOOL_VCC80AMD64 := Visual C++ 8.0 (aka Visual .NET 2005, or MSC v14), targeting AMD64.
|
---|
28 |
|
---|
29 | # Tool Specific Properties
|
---|
30 | ifndef PATH_TOOL_VCC80AMD64
|
---|
31 | PATH_TOOL_VCC80AMD64 := $(wildcard $(PATH_DEVTOOLS)/win.x86/vcc/v8*)
|
---|
32 | ifeq ($(PATH_TOOL_VCC80AMD64),)
|
---|
33 | PATH_TOOL_VCC80AMD64 := $(PATH_TOOL_VCC80)
|
---|
34 | endif
|
---|
35 | ifeq ($(PATH_TOOL_VCC80AMD64),)
|
---|
36 | PATH_TOOL_VCC80AMD64 := $(PATH_TOOL_VCC80X86)
|
---|
37 | endif
|
---|
38 | ifeq ($(PATH_TOOL_VCC80AMD64),)
|
---|
39 | PATH_TOOL_VCC80AMD64 := $(wildcard $(PATH_DEVTOOLS)/win.x86/vcc/v8*)
|
---|
40 | endif
|
---|
41 | ifneq ($(PATH_TOOL_VCC80AMD64),)
|
---|
42 | PATH_TOOL_VCC80AMD64 := $(lastword $(sort $(PATH_TOOL_VCC80AMD64)))
|
---|
43 | else
|
---|
44 | $(warning kBuild: PATH_TOOL_VCC80AMD64 cannot be determined!)
|
---|
45 | PATH_TOOL_VCC80AMD64 := $(PATH_DEVTOOLS)/win.x86/vcc/v8
|
---|
46 | endif
|
---|
47 | else
|
---|
48 | # Resolve any fancy stuff once and for all.
|
---|
49 | PATH_TOOL_VCC80AMD64 := $(PATH_TOOL_VCC80AMD64)
|
---|
50 | endif
|
---|
51 | ifeq ($(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH),win.amd64)
|
---|
52 | PATH_TOOL_VCC80AMD64_BIN ?= $(PATH_TOOL_VCC80AMD64)/bin/amd64
|
---|
53 | else
|
---|
54 | PATH_TOOL_VCC80AMD64_BIN ?= $(PATH_TOOL_VCC80AMD64)/bin/x86_amd64
|
---|
55 | endif
|
---|
56 | PATH_TOOL_VCC80AMD64_LIB ?= $(PATH_TOOL_VCC80AMD64)/lib/amd64
|
---|
57 | PATH_TOOL_VCC80AMD64_INC ?= $(PATH_TOOL_VCC80AMD64)/include
|
---|
58 | PATH_TOOL_VCC80AMD64_ATLMFC ?= $(PATH_TOOL_VCC80AMD64)/atlmfc
|
---|
59 | PATH_TOOL_VCC80AMD64_ATLMFC_INC ?= $(PATH_TOOL_VCC80AMD64_ATLMFC)/include
|
---|
60 | PATH_TOOL_VCC80AMD64_ATLMFC_LIB ?= $(PATH_TOOL_VCC80AMD64_ATLMFC)/lib/amd64
|
---|
61 | TOOL_VCC80AMD64_CC ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/cl.exe
|
---|
62 | TOOL_VCC80AMD64_CXX ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/cl.exe
|
---|
63 | TOOL_VCC80AMD64_AS ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/ml64.exe
|
---|
64 | TOOL_VCC80AMD64_RC ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/../rc.exe
|
---|
65 | TOOL_VCC80AMD64_AR ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/lib.exe
|
---|
66 | TOOL_VCC80AMD64_LD ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/link.exe
|
---|
67 | TOOL_VCC80AMD64_MT ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC80AMD64_BIN)/../mt.exe
|
---|
68 | ## Disabled fast DEP_IDB based dependencies.
|
---|
69 | #VCC80AMD64_OLD_DEPS = 1
|
---|
70 |
|
---|
71 | ## Constructs the correct .pdb name (the name is lowercased).
|
---|
72 | # @param $(1) Base name, no extention.
|
---|
73 | # @param $(2) The extension.
|
---|
74 | ifeq ($(filter tolower,$(KMK_FEATURES)),tolower)
|
---|
75 | TOOL_VCC80AMD64_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2)
|
---|
76 | else # this fallback is incorrect and won't work on a case sensitive FS.
|
---|
77 | TOOL_VCC80AMD64_PDB = $(1).$(2)
|
---|
78 | endif
|
---|
79 |
|
---|
80 | TOOL_VCC80AMD64_COBJSUFF ?= .obj
|
---|
81 | TOOL_VCC80AMD64_CFLAGS ?= -TC -c -nologo
|
---|
82 | TOOL_VCC80AMD64_CFLAGS.debug ?= -Od -Zi
|
---|
83 | TOOL_VCC80AMD64_CFLAGS.release ?= -O2
|
---|
84 | TOOL_VCC80AMD64_CFLAGS.profile ?= -O2
|
---|
85 | TOOL_VCC80AMD64_CINCS ?= $(PATH_TOOL_VCC80AMD64_INC)
|
---|
86 | TOOL_VCC80AMD64_CDEFS ?=
|
---|
87 |
|
---|
88 | TOOL_VCC80AMD64_CXXOBJSUFF ?= .obj
|
---|
89 | TOOL_VCC80AMD64_CXXFLAGS ?= -TP -c -nologo
|
---|
90 | TOOL_VCC80AMD64_CXXFLAGS.debug ?= -Od -Zi
|
---|
91 | TOOL_VCC80AMD64_CXXFLAGS.release ?= -O2
|
---|
92 | TOOL_VCC80AMD64_CXXFLAGS.profile ?= -O2
|
---|
93 | TOOL_VCC80AMD64_CXXINCS ?= $(PATH_TOOL_VCC80AMD64_INC) $(PATH_TOOL_VCC80AMD64_ATLMFC_INC)
|
---|
94 | TOOL_VCC80AMD64_CXXDEFS ?=
|
---|
95 |
|
---|
96 | TOOL_VCC80AMD64_ASOBJSUFF ?= .obj
|
---|
97 |
|
---|
98 | TOOL_VCC80AMD64_RCOBJSUFF ?= .res
|
---|
99 | TOOL_VCC80AMD64_RCINCS ?= $(PATH_TOOL_VCC80AMD64_INC) $(PATH_TOOL_VCC80AMD64_ATLMFC_INC)
|
---|
100 |
|
---|
101 | TOOL_VCC80AMD64_ARFLAGS ?= -nologo -machine:amd64
|
---|
102 | TOOL_VCC80AMD64_ARLIBSUFF ?= .lib
|
---|
103 |
|
---|
104 | TOOL_VCC80AMD64_LDFLAGS ?= -nologo -machine:amd64
|
---|
105 | TOOL_VCC80AMD64_LDFLAGS.debug ?= -debug
|
---|
106 | TOOL_VCC80AMD64_LDFLAGS.release ?=
|
---|
107 |
|
---|
108 |
|
---|
109 |
|
---|
110 | ## Compile C source.
|
---|
111 | # @param $(target) Normalized main target name.
|
---|
112 | # @param $(source) Source filename (relative).
|
---|
113 | # @param $(obj) Object file name. This shall be (re)created by the compilation.
|
---|
114 | # @param $(dep) Dependcy file. This shall be (re)created by the compilation.
|
---|
115 | # @param $(flags) Flags.
|
---|
116 | # @param $(defs) Definitions. No -D or something.
|
---|
117 | # @param $(incs) Includes. No -I or something.
|
---|
118 | # @param $(dirdep) Directory creation dependency.
|
---|
119 | # @param $(deps) Other dependencies.
|
---|
120 | #
|
---|
121 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
122 | # @param $(objsuff) Object suffix.
|
---|
123 | TOOL_VCC80AMD64_COMPILE_C_DEPEND =
|
---|
124 | TOOL_VCC80AMD64_COMPILE_C_DEPORD =
|
---|
125 | TOOL_VCC80AMD64_COMPILE_C_OUTPUT = $(call TOOL_VCC80AMD64_PDB, $(outbase)-obj,idb)
|
---|
126 | TOOL_VCC80AMD64_COMPILE_C_OUTPUT_MAYBE = $(call TOOL_VCC80AMD64_PDB, $(outbase)-obj,pdb)
|
---|
127 | define TOOL_VCC80AMD64_COMPILE_C_CMDS
|
---|
128 | $(QUIET)$(TOOL_VCC80AMD64_CC) -c\
|
---|
129 | $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
|
---|
130 | -Fd$(outbase)-obj.pdb \
|
---|
131 | -FD\
|
---|
132 | -Fo$(obj)\
|
---|
133 | $(subst /,\\,$(abspath $(source)))
|
---|
134 | $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC80AMD64_PDB,$(outbase)-obj,idb)
|
---|
135 | endef
|
---|
136 |
|
---|
137 |
|
---|
138 | ## Compile C++ source.
|
---|
139 | # @param $(target) Normalized main target name.
|
---|
140 | # @param $(source) Source filename (relative).
|
---|
141 | # @param $(obj) Object file name. This shall be (re)created by the compilation.
|
---|
142 | # @param $(dep) Dependcy file. This shall be (re)created by the compilation.
|
---|
143 | # @param $(flags) Flags.
|
---|
144 | # @param $(defs) Definitions. No -D or something.
|
---|
145 | # @param $(incs) Includes. No -I or something.
|
---|
146 | # @param $(dirdep) Directory creation dependency.
|
---|
147 | # @param $(deps) Other dependencies.
|
---|
148 | #
|
---|
149 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
150 | # @param $(objsuff) Object suffix.
|
---|
151 | TOOL_VCC80AMD64_COMPILE_CXX_DEPEND =
|
---|
152 | TOOL_VCC80AMD64_COMPILE_CXX_DEPORD =
|
---|
153 | TOOL_VCC80AMD64_COMPILE_CXX_OUTPUT = $(call TOOL_VCC80AMD64_PDB, $(outbase)-obj,idb)
|
---|
154 | TOOL_VCC80AMD64_COMPILE_CXX_OUTPUT_MAYBE = $(call TOOL_VCC80AMD64_PDB, $(outbase)-obj,pdb)
|
---|
155 | define TOOL_VCC80AMD64_COMPILE_CXX_CMDS
|
---|
156 | $(QUIET)$(TOOL_VCC80AMD64_CXX) -c\
|
---|
157 | $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
|
---|
158 | -Fd$(outbase)-obj.pdb \
|
---|
159 | -FD\
|
---|
160 | -Fo$(obj)\
|
---|
161 | $(subst /,\\,$(abspath $(source)))
|
---|
162 | $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC80AMD64_PDB,$(outbase)-obj,idb)
|
---|
163 | endef
|
---|
164 |
|
---|
165 |
|
---|
166 | ## Compile resource source.
|
---|
167 | # @param $(target) Normalized main target name.
|
---|
168 | # @param $(source) Source filename (relative).
|
---|
169 | # @param $(obj) Object file name. This shall be (re)created by the compilation.
|
---|
170 | # @param $(dep) Dependcy file. This shall be (re)created by the compilation.
|
---|
171 | # @param $(flags) Flags.
|
---|
172 | # @param $(defs) Definitions. No -D or something.
|
---|
173 | # @param $(incs) Includes. No -I or something.
|
---|
174 | # @param $(dirdep) Directory creation dependency.
|
---|
175 | # @param $(deps) Other dependencies.
|
---|
176 | #
|
---|
177 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
178 | # @param $(objsuff) Object suffix.
|
---|
179 | TOOL_VCC80AMD64_COMPILE_RC_DEPEND =
|
---|
180 | TOOL_VCC80AMD64_COMPILE_RC_DEPORD =
|
---|
181 | TOOL_VCC80AMD64_COMPILE_RC_OUTPUT =
|
---|
182 | define TOOL_VCC80AMD64_COMPILE_RC_CMDS
|
---|
183 | $(QUIET)$(TOOL_VCC80AMD64_RC) \
|
---|
184 | $(flags) $(addprefix /i, $(subst /,\\,$(incs))) $(addprefix /d, $(defs))\
|
---|
185 | /fo$(obj)\
|
---|
186 | $(subst /,\\,$(abspath $(source)))
|
---|
187 | endef
|
---|
188 |
|
---|
189 |
|
---|
190 | ## Link library
|
---|
191 | # @param $(target) Normalized main target name.
|
---|
192 | # @param $(out) Library name.
|
---|
193 | # @param $(objs) Object files to put in the library.
|
---|
194 | # @param $(flags) Flags.
|
---|
195 | # @param $(dirdep) Directory creation dependency.
|
---|
196 | # @param $(deps) Other dependencies.
|
---|
197 | # @param $(othersrc) Unhandled sources.
|
---|
198 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
199 | #
|
---|
200 | TOOL_VCC80AMD64_LINK_LIBRARY_DEPEND = $(othersrc)
|
---|
201 | TOOL_VCC80AMD64_LINK_LIBRARY_DEPORD =
|
---|
202 | TOOL_VCC80AMD64_LINK_LIBRARY_OUTPUT = $(outbase).rsp
|
---|
203 | TOOL_VCC80AMD64_LINK_LIBRARY_OUTPUT_MAYBE = $(outbase).lst $(outbase).exp $(outbase).pdb
|
---|
204 | define TOOL_VCC80AMD64_LINK_LIBRARY_CMDS
|
---|
205 | $(QUIET)$(APPEND) -n $(outbase).rsp \
|
---|
206 | $(foreach arg,\
|
---|
207 | $(subst /,\\,$(objs) \
|
---|
208 | $(filter-out %.def,$(othersrc))) \
|
---|
209 | $(addprefix /DEF:,$(filter %.def,$(othersrc))) \
|
---|
210 | ,\"$(arg)\")
|
---|
211 | $(QUIET)$(TOOL_VCC80AMD64_AR) $(flags) /OUT:$(out) @$(outbase).rsp
|
---|
212 | endef
|
---|
213 |
|
---|
214 |
|
---|
215 | ## Link program
|
---|
216 | # @param $(target) Normalized main target name.
|
---|
217 | # @param $(out) Program name.
|
---|
218 | # @param $(objs) Object files to link together.
|
---|
219 | # @param $(libs) Libraries to search.
|
---|
220 | # @param $(libpath) Library search paths.
|
---|
221 | # @param $(flags) Flags.
|
---|
222 | # @param $(dirdep) Directory creation dependency.
|
---|
223 | # @param $(deps) Other dependencies.
|
---|
224 | # @param $(othersrc) Unhandled sources.
|
---|
225 | # @param $(custom_pre) Custom step invoked before linking.
|
---|
226 | # @param $(custom_post) Custom step invoked after linking.
|
---|
227 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
228 | #
|
---|
229 | TOOL_VCC80AMD64_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
|
---|
230 | TOOL_VCC80AMD64_LINK_PROGRAM_DEPORD =
|
---|
231 | TOOL_VCC80AMD64_LINK_PROGRAM_OUTPUT = $(outbase).map
|
---|
232 | TOOL_VCC80AMD64_LINK_PROGRAM_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).pdb $(outbase).ilk $(out).manifest
|
---|
233 | define TOOL_VCC80AMD64_LINK_PROGRAM_CMDS
|
---|
234 | $(QUIET)$(TOOL_VCC80AMD64_LD) $(flags) \
|
---|
235 | /OUT:$(out) \
|
---|
236 | /MAPINFO:EXPORTS /INCREMENTAL:NO \
|
---|
237 | /MAP:$(outbase).map \
|
---|
238 | $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
|
---|
239 | $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
|
---|
240 | $(foreach p,$(libpath), /LIBPATH:$(p)) \
|
---|
241 | $(subst /,\\,$(objs)) \
|
---|
242 | $(subst /,\\,$(libs))
|
---|
243 | ifdef KMK_USE_TEST
|
---|
244 | $(QUIET)$(TEST) -f $(out).manifest -- \
|
---|
245 | $(TOOL_VCC80AMD64_MT) -manifest $(subst /,\\,$(out)).manifest -outputresource:$(subst /,\\,$(out))
|
---|
246 | else
|
---|
247 | $(QUIET)if test -f $(out).manifest; then \
|
---|
248 | $(TOOL_VCC80AMD64_MT) -manifest $(subst /,\\,$(out)).manifest -outputresource:$(subst /,\\,$(out)); \
|
---|
249 | fi
|
---|
250 | endif
|
---|
251 | endef
|
---|
252 |
|
---|
253 |
|
---|
254 | ## Link DLL.
|
---|
255 | # @param $(target) Normalized main target name.
|
---|
256 | # @param $(out) DLL name.
|
---|
257 | # @param $(objs) Object files to link together.
|
---|
258 | # @param $(libs) Libraries to search.
|
---|
259 | # @param $(libpath) Library search paths.
|
---|
260 | # @param $(flags) Flags.
|
---|
261 | # @param $(dirdep) Directory creation dependency.
|
---|
262 | # @param $(deps) Other dependencies.
|
---|
263 | # @param $(othersrc) Unhandled sources.
|
---|
264 | # @param $(custom_pre) Custom step invoked before linking.
|
---|
265 | # @param $(custom_post) Custom step invoked after linking.
|
---|
266 | #
|
---|
267 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
268 | TOOL_VCC80AMD64_LINK_DLL_DEPEND = $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
|
---|
269 | TOOL_VCC80AMD64_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB))
|
---|
270 | TOOL_VCC80AMD64_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp
|
---|
271 | TOOL_VCC80AMD64_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest
|
---|
272 | define TOOL_VCC80AMD64_LINK_DLL_CMDS
|
---|
273 | $(QUIET)$(TOOL_VCC80AMD64_LD) $(flags) \
|
---|
274 | /OUT:$(out) \
|
---|
275 | /IMPLIB:$(outbase).lib \
|
---|
276 | /MAPINFO:EXPORTS /INCREMENTAL:NO \
|
---|
277 | /MAP:$(outbase).map \
|
---|
278 | /DLL \
|
---|
279 | $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
|
---|
280 | $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
|
---|
281 | $(foreach p,$(libpath), /LIBPATH:$(p)) \
|
---|
282 | $(subst /,\\,$(objs)) \
|
---|
283 | $(subst /,\\,$(libs))
|
---|
284 | $(QUIET)$(TEST) -f $(out).manifest -- \
|
---|
285 | $(TOOL_VCC80AMD64_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
|
---|
286 | ifeq ($(filter %.exp .def,$(othersrc)),)
|
---|
287 | $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_LIB)/
|
---|
288 | endif
|
---|
289 | $(eval _DIRS += $(PATH_LIB))
|
---|
290 | endef
|
---|
291 |
|
---|
292 |
|
---|
293 | ## Link system module (windows aka driver, linux aka kernel module)
|
---|
294 | # @param $(target) Normalized main target name.
|
---|
295 | # @param $(out) System module name.
|
---|
296 | # @param $(objs) Object files to link together.
|
---|
297 | # @param $(libs) Libraries to search.
|
---|
298 | # @param $(libpath) Library search paths.
|
---|
299 | # @param $(flags) Flags.
|
---|
300 | # @param $(dirdep) Directory creation dependency.
|
---|
301 | # @param $(deps) Other dependencies.
|
---|
302 | # @param $(othersrc) Unhandled sources.
|
---|
303 | # @param $(custom_pre) Custom step invoked before linking.
|
---|
304 | # @param $(custom_post) Custom step invoked after linking.
|
---|
305 | #
|
---|
306 | # @param $(outbase) Output basename (full). Use this for list files and such.
|
---|
307 | TOOL_VCC80AMD64_LINK_SYSMOD_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
|
---|
308 | TOOL_VCC80AMD64_LINK_SYSMOD_DEPORD =
|
---|
309 | TOOL_VCC80AMD64_LINK_SYSMOD_OUTPUT = $(outbase).map
|
---|
310 | TOOL_VCC80AMD64_LINK_SYSMOD_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).pdb $(outbase).ilk $(out).manifest
|
---|
311 | define TOOL_VCC80AMD64_LINK_SYSMOD_CMDS
|
---|
312 | $(QUIET)$(TOOL_VCC80AMD64_LD) $(flags) \
|
---|
313 | /OUT:$(out) \
|
---|
314 | /MAPINFO:EXPORTS /INCREMENTAL:NO \
|
---|
315 | /MAP:$(outbase).map \
|
---|
316 | $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
|
---|
317 | $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
|
---|
318 | $(foreach p,$(libpath), /LIBPATH:$(p)) \
|
---|
319 | $(subst /,\\,$(objs)) \
|
---|
320 | $(subst /,\\,$(libs))
|
---|
321 | $(QUIET)$(TEST) -f $(out).manifest -- \
|
---|
322 | $(TOOL_VCC80AMD64_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
|
---|
323 | endef
|
---|
324 |
|
---|