source: trunk/kBuild/tools/VCC70.kmk@ 91

Last change on this file since 91 was 91, checked in by bird, 21 years ago

othersrc.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.1 KB
Line 
1# $Id: VCC70.kmk 91 2004-06-07 14:38:27Z bird $
2## @file
3#
4# kBuild Tool Config - Visual C++ 7.0 (aka Visual .NET)
5#
6# Copyright (c) 2004 knut st. osmundsen <bird-srcspam@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
28TOOL_VCC70 := Visual C++ 7.0
29PATH_TOOL_VCC70 ?= $(PATH_DEV)/x86.win32/vcc70
30PATH_TOOL_VCC70_LIB ?= $(PATH_DEV)/x86.win32/vcc70/lib
31
32TOOL_VCC70_CC := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/cl.exe
33TOOL_VCC70_COBJSUFF := .obj
34TOOL_VCC70_CFLAGS := -TC -c -nologo
35TOOL_VCC70_CFLAGS.debug := -Od -Zi
36TOOL_VCC70_CFLAGS.release := -O2
37TOOL_VCC70_CFLAGS.profile :=
38TOOL_VCC70_CINCS := $(PATH_TOOL_VCC70)/include
39TOOL_VCC70_CDEFS :=
40
41TOOL_VCC70_CXX := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/cl.exe
42TOOL_VCC70_CXXOBJSUFF := .obj
43TOOL_VCC70_CXXFLAGS := -TP -c -nologo
44TOOL_VCC70_CXXFLAGS.debug := -Od -Zi
45TOOL_VCC70_CXXFLAGS.release := -O2
46TOOL_VCC70_CXXFLAGS.profile :=
47TOOL_VCC70_CXXINCS := $(PATH_TOOL_VCC70)/include
48TOOL_VCC70_CXXDEFS :=
49
50TOOL_VCC70_AS := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/ml.exe
51TOOL_VCC70_ASOBJSUFF := .obj
52
53TOOL_VCC70_AR := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/lib.exe
54TOOL_VCC70_ARFLAGS := -nologo
55TOOL_VCC70_ARLIBSUFF := .lib
56
57TOOL_VCC70_LD := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/link.exe
58TOOL_VCC70_LDFLAGS := -nologo
59TOOL_VCC70_LDFLAGS.debug := -debug
60TOOL_VCC70_LDFLAGS.release :=
61
62
63## Compile C source.
64# @param $(target) Normalized main target name.
65# @param $(source) Source filename (relative).
66# @param $(obj) Object file name. This shall be (re)created by the compilation.
67# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
68# @param $(flags) Flags.
69# @param $(defs) Definitions. No -D or something.
70# @param $(incs) Includes. No -I or something.
71# @param $(dirdep) Directory creation dependency.
72#
73# @param $(outbase) Output basename (full). Use this for list files and such.
74# @param $(objsuff) Object suffix.
75define TOOL_VCC70_COMPILE_C
76#$ (warning dbg: TOOL_VCC70_COMPILE_C: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff))
77$(obj): $(dirdep) $(PATH_CURRENT)/$(source)
78 $(call MSG_L2,Compiling $$@ using GCC)
79 $(TOOL_VCC70_CC) -c\
80 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
81 -Fd$(outbase).pdb \
82 -Fo$$@ \
83 $(PATH_CURRENT)/$(source)
84_OUT_FILES += $(outbase).pdb
85
86endef
87
88
89## Compile C++ source.
90# @param $(target) Normalized main target name.
91# @param $(source) Source filename (relative).
92# @param $(obj) Object file name. This shall be (re)created by the compilation.
93# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
94# @param $(flags) Flags.
95# @param $(defs) Definitions. No -D or something.
96# @param $(incs) Includes. No -I or something.
97# @param $(dirdep) Directory creation dependency.
98#
99# @param $(outbase) Output basename (full). Use this for list files and such.
100# @param $(objsuff) Object suffix.
101define TOOL_VCC70_COMPILE_CXX
102#$ (warning dbg: TOOL_VCC70_COMPILE_CXX: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff))
103$(obj): $(dirdep) $(PATH_CURRENT)/$(source)
104 $(call MSG_L2,Compiling $$@ using GCC)
105 $(TOOL_VCC70_CXX) -c\
106 $(flags) $(addprefix -I, $(call CYGPATHMIXED,$(incs))) $(addprefix -D, $(defs))\
107 -Fd$(call CYGPATHMIXED,$(outbase).pdb) \
108 -Fo$(call CYGPATHMIXED,$(obj))\
109 $(call CYGPATHMIXED,$(PATH_CURRENT)/$(source))
110_OUT_FILES += $(outbase).pdb
111
112endef
113
114
115## Link library
116# @param $(target) Normalized main target name.
117# @param $(lib) Library name.
118# @param $(objs) Object files to put in the library.
119# @param $(flags) Flags.
120# @param $(dirdep) Directory creation dependency.
121# @param $(deps) Other dependencies.
122# @param $(othersrc) Unhandled sources.
123#
124# @param $(outbase) Output basename (full). Use this for list files and such.
125define TOOL_VCC70_LINK_LIBRARY
126#$ (warning dbg: TOOL_VCC70_LINK_LIBRARY: target=$(target) lib=$(lib) objs=$(objs) deps=$(deps) flags=$(flags) dirdep=$(dirdep) outbase=$(outbase))
127$(lib): $(dirdep) $(objs) $(deps) $(othersrc)
128 $(call MSG_L1,Creating Library $$@)
129 $(RM) -f $$@
130 $(TOOL_VCC70_AR) $(flags) /OUT:$(call CYGPATHMIXED,$(lib)) $(call CYGPATHMIXED,$(objs)) \
131 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(call CYGPATHMIXED,$(def)))
132 $(MKDIR) -p $(PATH_LIB)
133 $(CP) $$@ $(PATH_LIB)/
134
135endef
136
137
138## Link program
139# @param $(target) Normalized main target name.
140# @param $(exe) Program name.
141# @param $(objs) Object files to link together.
142# @param $(libs) Libraries to search.
143# @param $(libpath) Library search paths.
144# @param $(flags) Flags.
145# @param $(dirdep) Directory creation dependency.
146# @param $(deps) Other dependencies.
147# @param $(deffile) Definition file. (optional, PC only)
148# @param $(custom_pre) Custom step invoked before linking.
149# @param $(custom_post) Custom step invoked after linking.
150#
151# @param $(outbase) Output basename (full). Use this for list files and such.
152define TOOL_VCC70_LINK_PROGRAM
153#$ (warning dbg: TOOL_VCC70_LINK_PROGRAM: target=$(target) exe=$(exe) objs=$(objs) libs=$(libs) deps=$(deps) flags=$(flags) dirdep=$(dirdep) deffile=$(deffile) outbase=$(outbase))
154$(exe): $(dirdep) $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(deps)
155 $(call MSG_L1,Creating Program $$@)
156ifneq ($(custom_pre),)
157 $(eval $(custom_pre))
158endif
159 $(TOOL_VCC70_LD) $(flags) \
160 /OUT:$(call CYGPATHMIXED,$(exe)) \
161 /MAPINFO:EXPORTS /MAPINFO:LINES \
162 /MAP:$(call CYGPATHMIXED,$(outbase).map) \
163 $(call CYGPATHMIXED,$(objs)) \
164 $(call CYGPATHMIXED,$(libs))
165 $(MKDIR) -p $(PATH_BIN)
166 $(CP) $$@ $(PATH_BIN)/
167ifneq ($(custom_post),)
168 $(eval $(custom_post))
169endif
170_OUT_FILES += $(outbase).map
171
172endef
173
174
175## Link system module (windows aka driver, linux aka kernel module)
176# @param $(target) Normalized main target name.
177# @param $(sys) System module name.
178# @param $(objs) Object files to link together.
179# @param $(libs) Libraries to search.
180# @param $(libpath) Library search paths.
181# @param $(flags) Flags.
182# @param $(dirdep) Directory creation dependency.
183# @param $(deps) Other dependencies.
184# @param $(deffile) Definition file. (optional, PC only)
185# @param $(custom_pre) Custom step invoked before linking.
186# @param $(custom_post) Custom step invoked after linking.
187#
188# @param $(outbase) Output basename (full). Use this for list files and such.
189define TOOL_VCC70_LINK_SYSMOD
190#$ (warning dbg: TOOL_VCC70_LINK_SYSMOD: target=$(target) sys=$(sys) objs=$(objs) libs=$(libs) deps=$(deps) flags=$(flags) dirdep=$(dirdep) deffile=$(deffile) outbase=$(outbase))
191$(sys): $(dirdep) $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(deps)
192 $(call MSG_L1,Creating Program $$@)
193ifneq ($(custom_pre),)
194 $(eval $(custom_pre))
195endif
196 $(TOOL_VCC70_LD) $(flags) \
197 /OUT:$(call CYGPATHMIXED,$(sys)) \
198 /MAPINFO:EXPORTS /MAPINFO:LINES \
199 /MAP:$(call CYGPATHMIXED,$(outbase).map) \
200 $(call CYGPATHMIXED,$(objs)) \
201 $(call CYGPATHMIXED,$(libs))
202 $(MKDIR) -p $(PATH_BIN)
203 $(CP) $$@ $(PATH_BIN)/
204ifneq ($(custom_post),)
205 $(eval $(custom_post))
206endif
207_OUT_FILES += $(outbase).map
208
209endef
210
Note: See TracBrowser for help on using the repository browser.