source: trunk/kBuild/tools/VCC100.kmk@ 2951

Last change on this file since 2951 was 2951, checked in by bird, 9 years ago

VCC100*.kmk: Use kDepObj, drop /FD and related idb-file, drop kObjCache support (useless thanks to slow preprocessing).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.1 KB
Line 
1# $Id: VCC100.kmk 2951 2016-09-21 11:14:43Z bird $
2## @file
3# kBuild Tool Config - Visual C++ 10.0 (aka Visual 2010 and MSC v16), targeting $(KBUILD_TARGET).
4#
5
6#
7# Copyright (c) 2004-2014 knut st. osmundsen <bird-kBuild-spam-xiv@anduin.net>
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# As a special exception you are granted permission to include this file, via
27# the kmk include directive, as you wish without this in itself causing the
28# resulting makefile, program or whatever to be covered by the GPL license.
29# This exception does not however invalidate any other reasons why the makefile,
30# program, whatever should not be covered the GPL.
31#
32#
33
34TOOL_VCC100 := Visual C++ 10.0 (aka Visual 2010 and MSC v16), targeting $(KBUILD_TARGET).
35
36# Tool Specific Properties
37ifndef PATH_TOOL_VCC100
38 PATH_TOOL_VCC100 := $(wildcard $(KBUILD_DEVTOOLS_TRG)/vcc/v10*)
39 ifeq ($(PATH_TOOL_VCC100),)
40 PATH_TOOL_VCC100 := $(wildcard $(KBUILD_DEVTOOLS)/win.x86/vcc/v10*)
41 endif
42 ifeq ($(PATH_TOOL_VCC100),)
43 PATH_TOOL_VCC100 := $(wildcard $(KBUILD_DEVTOOLS)/x86.win32/vcc/v10*)
44 endif
45 ifeq ($(PATH_TOOL_VCC100),)
46 PATH_TOOL_VCC100 := $(wildcard $(KBUILD_DEVTOOLS)/win.amd64/vcc/v10*)
47 endif
48 ifeq ($(PATH_TOOL_VCC100),)
49 PATH_TOOL_VCC100 := $(lastword $(sort $(PATH_TOOL_VCC100)))
50 endif
51 # if not found, we'll enter 'pathless' mode.
52else
53 # Resolve any fancy stuff once and for all.
54 PATH_TOOL_VCC100 := $(PATH_TOOL_VCC100)
55endif
56ifneq ($(PATH_TOOL_VCC100),)
57 ifeq ($(KBUILD_HOST).$(KBUILD_HOST_ARCH),win.amd64)
58 PATH_TOOL_VCC100_BIN.amd64 ?= $(PATH_TOOL_VCC100)/bin/amd64
59 else
60 PATH_TOOL_VCC100_BIN.amd64 ?= $(PATH_TOOL_VCC100)/bin/x86_amd64
61 endif
62 PATH_TOOL_VCC100_BIN.x86 ?= $(PATH_TOOL_VCC100)/bin
63 PATH_TOOL_VCC100_BIN ?= $(PATH_TOOL_VCC100_BIN.$(KBUILD_TARGET_ARCH))
64 PATH_TOOL_VCC100_LIB.amd64 ?= $(PATH_TOOL_VCC100)/lib/amd64
65 PATH_TOOL_VCC100_LIB.x86 ?= $(PATH_TOOL_VCC100)/lib
66 PATH_TOOL_VCC100_LIB ?= $(PATH_TOOL_VCC100_LIB.$(KBUILD_TARGET_ARCH))
67 PATH_TOOL_VCC100_INC ?= $(PATH_TOOL_VCC100)/include
68 PATH_TOOL_VCC100_ATLMFC ?= $(PATH_TOOL_VCC100X86)/atlmfc
69 PATH_TOOL_VCC100_ATLMFC_INC ?= $(PATH_TOOL_VCC100_ATLMFC)/include
70 PATH_TOOL_VCC100_ATLMFC_LIB.amd64 ?= $(PATH_TOOL_VCC100_ATLMFC)/lib
71 PATH_TOOL_VCC100_ATLMFC_LIB.x86 ?= $(PATH_TOOL_VCC100_ATLMFC)/lib/amd64
72 PATH_TOOL_VCC100_ATLMFC_LIB ?= $(PATH_TOOL_VCC100_ATLMFC_LIB.$(KBUILD_TARGET_ARCH))
73 TOOL_VCC100_CC ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/cl.exe
74 TOOL_VCC100_CXX ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/cl.exe
75 TOOL_VCC100_AS ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/ml64.exe
76 TOOL_VCC100_AR ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/lib.exe
77 TOOL_VCC100_LD ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/link.exe
78 TOOL_VCC100_DUMPBIN ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/dumpbin.exe
79 TOOL_VCC100_EDITBIN ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC100_BIN)/editbin.exe
80else
81 # Pathless, relies on the environment.
82 TOOL_VCC100_CC ?= $(EXEC_X86_WIN32) cl.exe
83 TOOL_VCC100_CXX ?= $(EXEC_X86_WIN32) cl.exe
84 TOOL_VCC100_AS ?= $(EXEC_X86_WIN32) ml64.exe
85 TOOL_VCC100_AR ?= $(EXEC_X86_WIN32) lib.exe
86 TOOL_VCC100_LD ?= $(EXEC_X86_WIN32) link.exe
87 TOOL_VCC100_DUMPBIN ?= $(EXEC_X86_WIN32) dumpbin.exe
88 TOOL_VCC100_EDITBIN ?= $(EXEC_X86_WIN32) editbin.exe
89endif
90TOOL_VCC100_RC ?= $(EXEC_X86_WIN32) $(call TOOL_VCC100_FN_FIND_SDK_TOOL,rc.exe,[Rr][Cc].[Ee][Xx][Ee],TOOL_VCC100_RC_CACHED)
91TOOL_VCC100_MT ?= $(EXEC_X86_WIN32) $(call TOOL_VCC100_FN_FIND_SDK_TOOL,mt.exe,[Mm][Tt].[Ee][Xx][Ee],TOOL_VCC100_MT_CACHED)
92
93# The following in duplicated in VCC100.kmk and VCC100X86.kmk.
94TOOL_VCC100_FN_FIND_SDK_TOOL_SUB = $(eval $3 := $(firstword \
95 $(if-expr defined(PATH_SDK_WINPSDK71_BIN), $(wildcard $(PATH_SDK_WINPSDK71_BIN)/$2)) \
96 $(if-expr defined(PATH_SDK_WINPSDK_BIN) , $(wildcard $(PATH_SDK_WINPSDK_BIN)/$2)) \
97 $(rsort $(wildcard $(KBUILD_DEVTOOLS_HST)/sdk/*/[Bb][Ii][Nn]/$2)) \
98 $(rsort $(wildcard $(KBUILD_DEVTOOLS_HST_ALT)/sdk/*/[Bb][Ii][Nn]/$2)) \
99 $1))
100TOOL_VCC100_FN_FIND_SDK_TOOL = $(if-expr !defined($3),$(TOOL_VCC100_FN_FIND_SDK_TOOL_SUB),)$($3)
101
102## Disabled fast DEP_IDB based dependencies.
103#VCC100_OLD_DEPS = 1
104
105## Constructs the correct .pdb name (the name is lowercased).
106# @param $(1) Base name, no extention.
107# @param $(2) The extension.
108TOOL_VCC100_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2)
109
110TOOL_VCC100_COBJSUFF ?= .obj
111TOOL_VCC100_CFLAGS ?= -TC -nologo
112TOOL_VCC100_CFLAGS.debug ?= -Zi
113TOOL_VCC100_CFLAGS.dbgopt ?= -O2 -Zi
114TOOL_VCC100_CFLAGS.release ?= -O2
115TOOL_VCC100_CFLAGS.profile ?= -O2
116TOOL_VCC100_CINCS ?= $(PATH_TOOL_VCC100_INC)
117TOOL_VCC100_CDEFS ?=
118
119TOOL_VCC100_CXXOBJSUFF ?= .obj
120TOOL_VCC100_CXXFLAGS ?= -TP -nologo
121TOOL_VCC100_CXXFLAGS.debug ?= -Zi
122TOOL_VCC100_CXXFLAGS.dbgopt ?= -O2 -Zi
123TOOL_VCC100_CXXFLAGS.release ?= -O2
124TOOL_VCC100_CXXFLAGS.profile ?= -O2
125TOOL_VCC100_CXXINCS ?= $(PATH_TOOL_VCC100_INC) $(PATH_TOOL_VCC100_ATLMFC_INC)
126TOOL_VCC100_CXXDEFS ?=
127
128TOOL_VCC100_ASOBJSUFF ?= .obj
129
130TOOL_VCC100_RCOBJSUFF ?= .res
131TOOL_VCC100_RCINCS ?= $(PATH_TOOL_VCC100_INC) $(PATH_TOOL_VCC100_ATLMFC_INC)
132
133TOOL_VCC100_ARFLAGS.amd64 ?= -machine:amd64
134TOOL_VCC100_ARFLAGS.x86 ?= -machine:x86
135TOOL_VCC100_ARFLAGS ?= -nologo
136TOOL_VCC100_ARLIBSUFF ?= .lib
137
138TOOL_VCC100_LDFLAGS.amd64 ?= -machine:amd64
139TOOL_VCC100_LDFLAGS.x86 ?= -machine:x86
140TOOL_VCC100_LDFLAGS ?= -nologo
141TOOL_VCC100_LDFLAGS.debug ?= -debug
142TOOL_VCC100_LDFLAGS.dbgopt ?= -debug
143TOOL_VCC100_LDFLAGS.profile ?= -debug
144TOOL_VCC100_LDFLAGS.release ?=
145TOOL_VCC100_LIBPATH.amd64 ?= $(PATH_TOOL_VCC100_LIB.amd64) $(PATH_TOOL_VCC100_ATLMFC_LIB.amd64)
146TOOL_VCC100_LIBPATH.x86 ?= $(PATH_TOOL_VCC100_LIB.x86) $(PATH_TOOL_VCC100_ATLMFC_LIB.x86)
147
148
149
150## Compile C source.
151# @param $(target) Normalized main target name.
152# @param $(source) Source filename (relative).
153# @param $(obj) Object file name. This shall be (re)created by the compilation.
154# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
155# @param $(flags) Flags.
156# @param $(defs) Definitions. No -D or something.
157# @param $(incs) Includes. No -I or something.
158# @param $(dirdep) Directory creation dependency.
159# @param $(deps) Other dependencies.
160#
161# @param $(outbase) Output basename (full). Use this for list files and such.
162# @param $(objsuff) Object suffix.
163TOOL_VCC100_COMPILE_C_DEPEND =
164TOOL_VCC100_COMPILE_C_DEPORD =
165TOOL_VCC100_COMPILE_C_OUTPUT =
166TOOL_VCC100_COMPILE_C_OUTPUT_MAYBE = $(call TOOL_VCC100_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC100_PDB, $(outbase)-obj,idb)
167define TOOL_VCC100_COMPILE_C_CMDS
168 $(QUIET)$(TOOL_VCC100_CC) -c\
169 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
170 -Fd$(outbase)-obj.pdb \
171 -Fo$(obj)\
172 $(subst /,\\,$(abspath $(source)))
173 $(QUIET)$(DEP_OBJ) -f -s -q -o $(dep) -t $(obj) $(obj)
174endef
175
176
177## Compile C++ source.
178# @param $(target) Normalized main target name.
179# @param $(source) Source filename (relative).
180# @param $(obj) Object file name. This shall be (re)created by the compilation.
181# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
182# @param $(flags) Flags.
183# @param $(defs) Definitions. No -D or something.
184# @param $(incs) Includes. No -I or something.
185# @param $(dirdep) Directory creation dependency.
186# @param $(deps) Other dependencies.
187#
188# @param $(outbase) Output basename (full). Use this for list files and such.
189# @param $(objsuff) Object suffix.
190TOOL_VCC100_COMPILE_CXX_DEPEND =
191TOOL_VCC100_COMPILE_CXX_DEPORD =
192TOOL_VCC100_COMPILE_CXX_OUTPUT =
193TOOL_VCC100_COMPILE_CXX_OUTPUT_MAYBE = $(call TOOL_VCC100_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC100_PDB, $(outbase)-obj,idb)
194define TOOL_VCC100_COMPILE_CXX_CMDS
195 $(QUIET)$(TOOL_VCC100_CXX) -c\
196 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
197 -Fd$(outbase)-obj.pdb \
198 -Fo$(obj)\
199 $(subst /,\\,$(abspath $(source)))
200 $(QUIET)$(DEP_OBJ) -f -s -q -o $(dep) -t $(obj) $(obj)
201endef
202
203## @todo configure the assembler template.
204
205## Compile resource source.
206# @param $(target) Normalized main target name.
207# @param $(source) Source filename (relative).
208# @param $(obj) Object file name. This shall be (re)created by the compilation.
209# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
210# @param $(flags) Flags.
211# @param $(defs) Definitions. No -D or something.
212# @param $(incs) Includes. No -I or something.
213# @param $(dirdep) Directory creation dependency.
214# @param $(deps) Other dependencies.
215#
216# @param $(outbase) Output basename (full). Use this for list files and such.
217# @param $(objsuff) Object suffix.
218TOOL_VCC100_COMPILE_RC_OUTPUT =
219TOOL_VCC100_COMPILE_RC_DEPEND =
220TOOL_VCC100_COMPILE_RC_DEPORD =
221define TOOL_VCC100_COMPILE_RC_CMDS
222 $(QUIET)$(TOOL_VCC100_RC) \
223 $(flags) $(addprefix /i, $(subst /,\\,$(incs))) $(addprefix /d, $(defs))\
224 /fo$(obj)\
225 $(subst /,\\,$(abspath $(source)))
226endef
227
228
229## Link library
230# @param $(target) Normalized main target name.
231# @param $(out) Library name.
232# @param $(objs) Object files to put in the library.
233# @param $(flags) Flags.
234# @param $(dirdep) Directory creation dependency.
235# @param $(deps) Other dependencies.
236# @param $(othersrc) Unhandled sources.
237# @param $(outbase) Output basename (full). Use this for list files and such.
238#
239TOOL_VCC100_LINK_LIBRARY_DEPEND = $(othersrc)
240TOOL_VCC100_LINK_LIBRARY_DEPORD =
241TOOL_VCC100_LINK_LIBRARY_OUTPUT = $(outbase).rsp
242TOOL_VCC100_LINK_LIBRARY_OUTPUT_MAYBE = $(outbase).lst $(outbase).exp $(outbase).pdb
243define TOOL_VCC100_LINK_LIBRARY_CMDS
244 $(QUIET)$(APPEND) -tn $(outbase).rsp \
245 $(foreach arg,\
246 $(subst /,\\,$(objs) \
247 $(filter-out %.def,$(othersrc))) \
248 $(addprefix /DEF:,$(filter %.def,$(othersrc))) \
249 ,\"$(arg)\")
250 $(QUIET)$(TOOL_VCC100_AR) $(flags) /OUT:$(out) @$(outbase).rsp
251endef
252
253
254
255
256## Link program
257# @param $(target) Normalized main target name.
258# @param $(out) Program name.
259# @param $(objs) Object files to link together.
260# @param $(libs) Libraries to search.
261# @param $(libpath) Library search paths.
262# @param $(flags) Flags.
263# @param $(dirdep) Directory creation dependency.
264# @param $(deps) Other dependencies.
265# @param $(othersrc) Unhandled sources.
266# @param $(custom_pre) Custom step invoked before linking.
267# @param $(custom_post) Custom step invoked after linking.
268# @param $(outbase) Output basename (full). Use this for list files and such.
269#
270TOOL_VCC100_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
271TOOL_VCC100_LINK_PROGRAM_DEPORD =
272TOOL_VCC100_LINK_PROGRAM_OUTPUT = $(outbase).map $(outbase).rsp
273TOOL_VCC100_LINK_PROGRAM_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).ilk $(out).manifest
274TOOL_VCC100_LINK_PROGRAM_OUTPUT_DEBUG = $(outbase).pdb
275TOOL_VCC100_LINK_PROGRAM_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
276define TOOL_VCC100_LINK_PROGRAM_CMDS
277 $(QUIET)$(APPEND) -tn $(outbase).rsp \
278 $(foreach arg,\
279 $(subst /,\\,$(objs)) \
280 $(subst /,\\,$(libs)) \
281 ,\"$(arg)\")
282 $(QUIET)$(TOOL_VCC100_LD) $(flags) \
283 /OUT:$(out) \
284 /MAPINFO:EXPORTS /INCREMENTAL:NO \
285 /MAP:$(outbase).map \
286 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
287 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
288 $(foreach p,$(libpath), /LIBPATH:$(p)) \
289 @$(outbase).rsp
290ifndef TOOL_VCC100_NO_AUTO_MANIFEST
291 $(QUIET)$(TEST) -f $(out).manifest -- \
292 $(TOOL_VCC100_MT) -manifest $(subst /,\\,$(out)).manifest -outputresource:$(subst /,\\,$(out))
293endif
294endef
295
296
297## Link DLL.
298# @param $(target) Normalized main target name.
299# @param $(out) DLL name.
300# @param $(objs) Object files to link together.
301# @param $(libs) Libraries to search.
302# @param $(libpath) Library search paths.
303# @param $(flags) Flags.
304# @param $(dirdep) Directory creation dependency.
305# @param $(deps) Other dependencies.
306# @param $(othersrc) Unhandled sources.
307# @param $(custom_pre) Custom step invoked before linking.
308# @param $(custom_post) Custom step invoked after linking.
309#
310# @param $(outbase) Output basename (full). Use this for list files and such.
311TOOL_VCC100_LINK_DLL_DEPEND = $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
312TOOL_VCC100_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_STAGE_LIB))
313TOOL_VCC100_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp $(outbase).rsp
314TOOL_VCC100_LINK_DLL_OUTPUT_MAYBE = $(outbase).ilk $(out).manifest $(PATH_STAGE_LIB)/$(notdir $(outbase)).exp
315TOOL_VCC100_LINK_DLL_OUTPUT_MAYBE_PRECIOUS = $(PATH_STAGE_LIB)/$(notdir $(outbase)).lib
316TOOL_VCC100_LINK_DLL_OUTPUT_DEBUG = $(outbase).pdb
317TOOL_VCC100_LINK_DLL_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
318define TOOL_VCC100_LINK_DLL_CMDS
319 $(QUIET)$(APPEND) -tn $(outbase).rsp \
320 $(foreach arg,\
321 $(subst /,\\,$(objs)) \
322 $(subst /,\\,$(libs)) \
323 ,\"$(arg)\")
324 $(QUIET)$(TOOL_VCC100_LD) $(flags) \
325 /OUT:$(out) \
326 /IMPLIB:$(outbase).lib \
327 /MAPINFO:EXPORTS /INCREMENTAL:NO \
328 /MAP:$(outbase).map \
329 /DLL \
330 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
331 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
332 $(foreach p,$(libpath), /LIBPATH:$(p)) \
333 @$(outbase).rsp
334ifndef TOOL_VCC100_NO_AUTO_MANIFEST
335 $(QUIET)$(TEST) -f $(out).manifest -- \
336 $(TOOL_VCC100_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
337endif
338 $(QUIET)$(TEST) -f $(outbase).lib -- $(KLIBTWEAKER_EXT) --clear-timestamps $(outbase).lib
339 $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_STAGE_LIB)/
340$(eval _DIRS += $(PATH_STAGE_LIB))
341endef
342
343
344## Link system module (windows aka driver, linux aka kernel module)
345# @param $(target) Normalized main target name.
346# @param $(out) System module name.
347# @param $(objs) Object files to link together.
348# @param $(libs) Libraries to search.
349# @param $(libpath) Library search paths.
350# @param $(flags) Flags.
351# @param $(dirdep) Directory creation dependency.
352# @param $(deps) Other dependencies.
353# @param $(othersrc) Unhandled sources.
354# @param $(custom_pre) Custom step invoked before linking.
355# @param $(custom_post) Custom step invoked after linking.
356#
357# @param $(outbase) Output basename (full). Use this for list files and such.
358TOOL_VCC100_LINK_SYSMOD_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
359TOOL_VCC100_LINK_SYSMOD_DEPORD =
360TOOL_VCC100_LINK_SYSMOD_OUTPUT = $(outbase).map $(outbase).rsp
361TOOL_VCC100_LINK_SYSMOD_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).ilk $(out).manifest
362TOOL_VCC100_LINK_SYSMOD_OUTPUT_DEBUG = $(outbase).pdb
363TOOL_VCC100_LINK_SYSMOD_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
364define TOOL_VCC100_LINK_SYSMOD_CMDS
365 $(QUIET)$(APPEND) -tn $(outbase).rsp \
366 $(foreach arg,\
367 $(subst /,\\,$(objs)) \
368 $(subst /,\\,$(libs)) \
369 ,\"$(arg)\")
370 $(QUIET)$(TOOL_VCC100_LD) $(flags) \
371 /OUT:$(out) \
372 /MAPINFO:EXPORTS /INCREMENTAL:NO \
373 /MAP:$(outbase).map \
374 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
375 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
376 $(foreach p,$(libpath), /LIBPATH:$(p)) \
377 @$(outbase).rsp
378ifndef TOOL_VCC100_NO_AUTO_MANIFEST
379 $(QUIET)$(TEST) -f $(out).manifest -- \
380 $(TOOL_VCC100_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
381endif
382endef
383
Note: See TracBrowser for help on using the repository browser.