summaryrefslogtreecommitdiffstats
path: root/kBuild/tools/WATCOMC11C.kmk
blob: af280234eaaeb695f41ba8382b6e874b556b640d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# $Id: WATCOMC11C.kmk 3578 2023-01-05 00:42:25Z bird $
## @file
# kBuild Tool Config - Watcom C v11.0c
#

#
# Copyright (c) 2008-2017 knut st. osmundsen <bird-kBuild-spam-xviiv@anduin.net>
#
# This file is part of kBuild.
#
# kBuild is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# kBuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with kBuild; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#
# As a special exception you are granted permission to include this file, via
# the kmk include directive, as you wish without this in itself causing the
# resulting makefile, program or whatever to be covered by the GPL license.
# This exception does not however invalidate any other reasons why the makefile,
# program, whatever should not be covered the GPL.
#
#

TOOL_WATCOMC11C = Watcom C/C++ v11.0c (generic)

ifeq ($(PATH_TOOL_WATCOMC11C),)
 ifeq ($(PATH_TOOL_WATCOMC11C),)
  PATH_TOOL_WATCOMC11C := $(wildcard $(KBUILD_DEVTOOLS_HST)/watcom/v11.0c*)
 endif
 ifeq ($(PATH_TOOL_WATCOMC11C),)
  PATH_TOOL_WATCOMC11C := $(wildcard $(KBUILD_DEVTOOLS_TRG)/watcom/v11.0c*)
 endif
 ifeq ($(PATH_TOOL_WATCOMC11C),)
  PATH_TOOL_WATCOMC11C := $(wildcard $(KBUILD_DEVTOOLS)/common/watcom/v11.0c*)
 endif
 ifeq ($(PATH_TOOL_WATCOMC11C)$(KBUILD_HOST),os2)
  if1of ($(USER) $(USERNAME) $(LOGNAME), bird)
   PATH_TOOL_WATCOMC11C := $(wildcard d:/dev/Watcom/v11.0c*)
  endif
 endif
 PATH_TOOL_WATCOMC11C := $(firstword $(sort $(PATH_TOOL_WATCOMC11C)))
 # if not found, we'll enter 'pathless' mode.
else
 # Resolve any fancy stuff once and for all.
 PATH_TOOL_WATCOMC11C := $(PATH_TOOL_WATCOMC11C)
endif

ifneq ($(PATH_TOOL_WATCOMC11C),)
 TOOL_WATCOMC11C_PATHLESS := no

 ifeq ($(KBUILD_HOST),os2)
  PATH_TOOL_WATCOMC11C_BIN   = $(PATH_TOOL_WATCOMC11C)/binp
  PATH_TOOL_WATCOMC11C_BIN2  = $(PATH_TOOL_WATCOMC11C)/binw
  TOOL_WATCOMC11C_ENV_SETUP ?= $(REDIRECT) \
 	-E 'BEGINLIBPATH=$(PATH_TOOL_WATCOMC11C)/binp/dll;$(BEGINLIBPATH)' \
 	-E 'LIBPATHSTRICT=T' \
 	-E 'PATH=$(PATH_TOOL_WATCOMC11C_BIN);$(PATH_TOOL_WATCOMC11C_BIN2)' \
 	-E 'WATCOM=$(PATH_TOOL_WATCOMC11C)' \
 	-E 'EDPATH=$(PATH_TOOL_WATCOMC11C)/EDDAT' \
 	-E 'LIB=$1' \
 	-E 'INCLUDE=' \
 	$2 --
 else
  PATH_TOOL_WATCOMC11C_BIN   = $(PATH_TOOL_WATCOMC11C)/binnt
  PATH_TOOL_WATCOMC11C_BIN2  = $(PATH_TOOL_WATCOMC11C_BIN)
  TOOL_WATCOMC11C_ENV_SETUP ?= $(REDIRECT) \
 	-E 'PATH=$(PATH_TOOL_WATCOMC11C_BIN);$(PATH_TOOL_WATCOMC11C)/binw' \
 	-E 'WATCOM=$(PATH_TOOL_WATCOMC11C)' \
 	-E 'EDPATH=$(PATH_TOOL_WATCOMC11C)/EDDAT' \
 	-E 'LIB=$1' \
 	-E 'INCLUDE=' \
 	$2 --
 endif

 TOOL_WATCOMC11C_CC    ?= $(PATH_TOOL_WATCOMC11C_BIN)/wcc386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CC16  ?= $(PATH_TOOL_WATCOMC11C_BIN)/wcc$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CXX   ?= $(PATH_TOOL_WATCOMC11C_BIN)/wpp386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CXX16 ?= $(PATH_TOOL_WATCOMC11C_BIN)/wpp$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_AS    ?= $(PATH_TOOL_WATCOMC11C_BIN)/wasm$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_AR    ?= $(PATH_TOOL_WATCOMC11C_BIN)/wlib$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_RC    ?= $(PATH_TOOL_WATCOMC11C_BIN2)/wrc$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_LD    ?= $(PATH_TOOL_WATCOMC11C_BIN2)/wcl386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_LD16  ?= $(PATH_TOOL_WATCOMC11C_BIN2)/wcl$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_WLINK ?= $(PATH_TOOL_WATCOMC11C_BIN2)/wlink$(HOSTSUFF_EXE)

else
 # Pathless, relies on the environment.
 TOOL_WATCOMC11C_PATHLESS :=
 TOOL_WATCOMC11C_ENV_SETUP ?= $(REDIRECT) \
 	-E 'LIB=$1' \
 	-E 'INCLUDE=' \
 	$2 --
 TOOL_WATCOMC11C_CC    ?= wcc386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CC16  ?= wcc$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CXX   ?= wpp386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_CXX16 ?= wpp$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_AS    ?= wasm$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_AR    ?= wlib$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_RC    ?= wrc$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_LD    ?= wcl386$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_LD16  ?= wcl$(HOSTSUFF_EXE)
 TOOL_WATCOMC11C_WLINK ?= wcl$(HOSTSUFF_EXE)

endif

if $(KBUILD_KMK_REVISION) >= 2747
 TOOL_WATCOMC11C_ENV_SETUP_BD ?= $(call TOOL_WATCOMC11C_ENV_SETUP,$1,$2 --wcc-brain-damage)
else
 TOOL_WATCOMC11C_ENV_SETUP_BD ?= $(call TOOL_WATCOMC11C_ENV_SETUP,$1,$2)
endif


# General Properties used by kBuild
TOOL_WATCOMC11C_COBJSUFF         ?= .obj
TOOL_WATCOMC11C_CFLAGS           ?= -zq
TOOL_WATCOMC11C_CFLAGS.dos       ?= -bt=dos
TOOL_WATCOMC11C_CFLAGS.os2       ?= -bt=os2
TOOL_WATCOMC11C_CFLAGS.win       ?= -bt=nt
ifdef PATH_TOOL_WATCOMC11C
 TOOL_WATCOMC11C_CINCS           ?= $(PATH_TOOL_WATCOMC11C)/h
endif

TOOL_WATCOMC11C_CXXOBJSUFF       ?= .obj
TOOL_WATCOMC11C_CXXFLAGS         ?= -zq
TOOL_WATCOMC11C_CXXFLAGS.dos     ?= -bt=dos
TOOL_WATCOMC11C_CXXFLAGS.os2     ?= -bt=os2
TOOL_WATCOMC11C_CXXFLAGS.win     ?= -bt=nt
ifdef PATH_TOOL_WATCOMC11C
 TOOL_WATCOMC11C_CXXINCS         ?= $(PATH_TOOL_WATCOMC11C)/h
endif

TOOL_WATCOMC11C_RCOBJSUFF        ?= .res
TOOL_WATCOMC11C_RCFLAGS          ?= -r
ifdef PATH_TOOL_WATCOMC11C
 TOOL_WATCOMC11C_RCINCS          ?= $(PATH_TOOL_WATCOMC11C)/h
endif

TOOL_WATCOMC11C_ARFLAGS          ?= -q
TOOL_WATCOMC11C_ARLIBSUFF        ?= .lib

TOOL_WATCOMC11C_LDFLAGS          ?= -zq -y
TOOL_WATCOMC11C_LDFLAGS.dos      ?= -bt=dos
TOOL_WATCOMC11C_LDFLAGS.os2      ?= -bt=os2
TOOL_WATCOMC11C_LDFLAGS.win      ?= -bt=nt


TOOL_WATCOMC11C_COMPILE_C_DEPEND =
TOOL_WATCOMC11C_COMPILE_C_DEPORD =
TOOL_WATCOMC11C_COMPILE_C_OUTPUT = $(obj).err
define TOOL_WATCOMC11C_COMPILE_C_CMDS
	$(QUIET) $(call TOOL_WATCOMC11C_ENV_SETUP_BD) $(TOOL_WATCOMC11C_CC) \
		$(flags) \
		$(addsuffix , $(addprefix -i=, $(subst /,\\,$(incs)))) \
		$(qaddprefix sh,-d, $(defs)) \
		-fo=$(subst /,\\,$(obj)) \
		-fr=$(subst /,\\,$(obj)).err \
		$(subst /,\\,$(abspath $(source)))
	$(QUIET)$(APPEND) -n $(obj).err
## @todo dependencies
endef

TOOL_WATCOMC11C_COMPILE_CXX_DEPEND =
TOOL_WATCOMC11C_COMPILE_CXX_DEPORD =
TOOL_WATCOMC11C_COMPILE_CXX_OUTPUT = $(obj).err
define TOOL_WATCOMC11C_COMPILE_CXX_CMDS
	$(QUIET) $(call TOOL_WATCOMC11C_ENV_SETUP_BD) $(TOOL_WATCOMC11C_CXX) \
		$(flags) \
		$(addsuffix , $(addprefix -i=, $(subst /,\\,$(incs)))) \
		$(qaddprefix sh,-d, $(defs)) \
		-fo=$(subst /,\\,$(obj)) \
		-fr=$(subst /,\\,$(obj)).err \
		$(subst /,\\,$(abspath $(source)))
	$(QUIET)$(APPEND) -n $(obj).err
## @todo dependencies
endef

TOOL_WATCOMC11C_COMPILE_RC_OUTPUT =
TOOL_WATCOMC11C_COMPILE_RC_DEPEND =
TOOL_WATCOMC11C_COMPILE_RC_DEPORD =
define TOOL_WATCOMC11C_COMPILE_RC_CMDS
	$(QUIET) $(call TOOL_WATCOMC11C_ENV_SETUP) \
		$(TOOL_WATCOMC11C_RC) -r\
		$(flags) \
		$(addprefix -i=, $(subst /,\\,$(incs))) \
		$(qaddprefix sh,-d, $(defs)) \
		-fo=$(subst /,\\,$(obj)) \
		$(subst /,\\,$(abspath $(source)))
endef

TOOL_WATCOMC11C_LINK_LIBRARY_OUTPUT = $(outbase).rsp
TOOL_WATCOMC11C_LINK_LIBRARY_DEPEND = $(othersrc)
TOOL_WATCOMC11C_LINK_LIBRARY_DEPORD =
define TOOL_WATCOMC11C_LINK_LIBRARY_CMDS
	$(QUIET)$(APPEND) -tn $(outbase).rsp $(foreach obj,$(subst /,\,$(objs) $(othersrc)),'+"$(obj)"')
	$(QUIET)$(TOOL_WATCOMC11C_ENV_SETUP_BD) $(TOOL_WATCOMC11C_AR) $(flags) $(subst /,\\,$(out)) @$(outbase).rsp
endef

TOOL_WATCOMC11C_LINK_PROGRAM_OUTPUT = $(outbase).map
TOOL_WATCOMC11C_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_WATCOMC11C_LINK_PROGRAM_DEPORD =
define TOOL_WATCOMC11C_LINK_PROGRAM_CMDS
	$(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP_BD,$(subst $(SP),,$(addsuffix ;,$(libpath))),-C $(dir $(out))) \
		$(TOOL_WATCOMC11C_LD) \
		$(flags) \
		-fe=$(subst /,\\,$(out)) \
		-fm=$(subst /,\\,$(outbase).map) \
		$(subst /,\\,$(filter-out %.res,$(objs))) \
		$(subst /,\\,$(libs)) \
		$(subst /,\\,$(othersrc))
	$(if $(filter %.res,$(objs)), $(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP) \
		$(TOOL_WATCOMC11C_RC) \
			$(filter -bt=%,$(flags)) \
			/fe=$(subst /,\\,$(out)) \
			$(subst /,\\,$(filter %.res,$(objs))))
endef

TOOL_WATCOMC11C_LINK_DLL_OUTPUT = $(outbase).map
TOOL_WATCOMC11C_LINK_DLL_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_WATCOMC11C_LINK_DLL_DEPORD =
define TOOL_WATCOMC11C_LINK_DLL_CMDS
	$(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP_BD,$(subst $(SP),,$(addsuffix ;,$(libpath))),-C $(dir $(out))) \
		$(TOOL_WATCOMC11C_LD) \
		$(flags) \
		-fe=$(subst /,\\,$(out)) \
		-fm=$(subst /,\\,$(outbase).map) \
		$(subst /,\\,$(filter-out %.res,$(objs))) \
		$(subst /,\\,$(libs)) \
		$(subst /,\\,$(othersrc))
	$(if $(filter %.res,$(objs)), $(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP) \
		$(TOOL_WATCOMC11C_RC) \
			$(filter -bt=%,$(flags)) \
			/fe=$(subst /,\\,$(out)) \
			$(subst /,\\,$(filter %.res,$(objs))))
endef

TOOL_WATCOMC11C_LINK_SYSMOD_OUTPUT = $(outbase).map
TOOL_WATCOMC11C_LINK_SYSMOD_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_WATCOMC11C_LINK_SYSMOD_DEPORD =
define TOOL_WATCOMC11C_LINK_SYSMOD_CMDS
	$(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP_BD,$(subst $(SP),,$(addsuffix ;,$(libpath))),-C $(dir $(out))) \
		$(TOOL_WATCOMC11C_LD) \
		$(flags) \
		-fe=$(subst /,\\,$(out)) \
		-fm=$(subst /,\\,$(outbase).map) \
		$(subst /,\\,$(filter-out %.res,$(objs))) \
		$(subst /,\\,$(libs)) \
		$(subst /,\\,$(othersrc))
	$(if $(filter %.res,$(objs)), $(QUIET)$(call TOOL_WATCOMC11C_ENV_SETUP) \
		$(TOOL_WATCOMC11C_RC) \
			$(filter -bt=%,$(flags)) \
			/fe=$(subst /,\\,$(out)) \
			$(subst /,\\,$(filter %.res,$(objs))))
endef