1 | # $Id: OPENWATCOM-WL.kmk 2749 2015-01-23 01:01:02Z bird $
|
---|
2 | ## @file
|
---|
3 | # kBuild Tool Config - Open Watcom v1.4 and later, using wlink.
|
---|
4 | #
|
---|
5 | # @remarks wrc is untested, so are DLLs, and programs.
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (c) 2008-2010 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
|
---|
9 | #
|
---|
10 | # This file is part of kBuild.
|
---|
11 | #
|
---|
12 | # kBuild is free software; you can redistribute it and/or modify
|
---|
13 | # it under the terms of the GNU General Public License as published by
|
---|
14 | # the Free Software Foundation; either version 2 of the License, or
|
---|
15 | # (at your option) any later version.
|
---|
16 | #
|
---|
17 | # kBuild is distributed in the hope that it will be useful,
|
---|
18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
20 | # GNU General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with kBuild; if not, write to the Free Software
|
---|
24 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
25 | #
|
---|
26 | #
|
---|
27 | # As a special exception you are granted permission to include this file, via
|
---|
28 | # the kmk include directive, as you wish without this in itself causing the
|
---|
29 | # resulting makefile, program or whatever to be covered by the GPL license.
|
---|
30 | # This exception does not however invalidate any other reasons why the makefile,
|
---|
31 | # program, whatever should not be covered the GPL.
|
---|
32 | #
|
---|
33 | #
|
---|
34 |
|
---|
35 | TOOL_OPENWATCOM-WL = Open Watcom v1.4 and later, using wlink.
|
---|
36 | TOOL_OPENWATCOM-WL_EXTENDS = OPENWATCOM
|
---|
37 | TOOL_OPENWATCOM-WL_LDFLAGS ?= Option Quiet
|
---|
38 | TOOL_OPENWATCOM-WL_LDFLAGS.dos ?= $(NO_SUCH_VARIABLE)
|
---|
39 | TOOL_OPENWATCOM-WL_LDFLAGS.linux ?= $(NO_SUCH_VARIABLE)
|
---|
40 | TOOL_OPENWATCOM-WL_LDFLAGS.nt ?= $(NO_SUCH_VARIABLE)
|
---|
41 | TOOL_OPENWATCOM-WL_LDFLAGS.os2 ?= $(NO_SUCH_VARIABLE)
|
---|
42 | TOOL_OPENWATCOM-WL_LDFLAGS.win ?= $(NO_SUCH_VARIABLE)
|
---|
43 |
|
---|
44 |
|
---|
45 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT = $(outbase).map $(outbase).rsp
|
---|
46 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE = $(outbase).sym
|
---|
47 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
|
---|
48 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPORD =
|
---|
49 | define TOOL_OPENWATCOM-WL_LINK_PROGRAM_CMDS
|
---|
50 | $(QUIET)$(APPEND) -tn $(outbase).rsp \
|
---|
51 | $(if $(flags),'$(flags)',) \
|
---|
52 | 'Name $(call TOOL_OPENWATCOM_FIX_SLASHES_SQ,$(out)$(if $(suffix $(out)),,.))' \
|
---|
53 | 'Option Map=$(call TOOL_OPENWATCOM_FIX_SLASHES_SQ,$(outbase)).map' \
|
---|
54 | $(foreach p,$(call TOOL_OPENWATCOM_FIX_SLASHES_SQ,$(libpath)),'LIBPath $p') \
|
---|
55 | $(foreach o,$(call TOOL_OPENWATCOM_FIX_SLASHES_SQ,$(filter-out %.res,$(objs)) $(othersrc)),'$(if $(filter %.lib %.a,$l),LIB,)File $o') \
|
---|
56 | $(foreach l,$(call TOOL_OPENWATCOM_FIX_SLASHES_SQ,$(libs)),'Library $l')
|
---|
57 | $(QUIET)$(call TOOL_OPENWATCOM_ENV_SETUP_BD) \
|
---|
58 | $(TOOL_OPENWATCOM_WLINK) @$(outbase).rsp
|
---|
59 | $(if $(filter %.res,$(objs)), $(QUIET)$(call TOOL_OPENWATCOM_ENV_SETUP) \
|
---|
60 | $(TOOL_OPENWATCOM_RC) \
|
---|
61 | $(filter -bt=%,$(flags)) \
|
---|
62 | /fe=$(call TOOL_OPENWATCOM_FIX_SLASHES,$(out)) \
|
---|
63 | $(call TOOL_OPENWATCOM_FIX_SLASHES,$(filter %.res,$(objs))))
|
---|
64 | endef
|
---|
65 |
|
---|
66 | TOOL_OPENWATCOM-WL_LINK_DLL_OUTPUT = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT)
|
---|
67 | TOOL_OPENWATCOM-WL_LINK_DLL_OUTPUT_MAYBE = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE)
|
---|
68 | TOOL_OPENWATCOM-WL_LINK_DLL_DEPEND = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPEND)
|
---|
69 | TOOL_OPENWATCOM-WL_LINK_DLL_DEPORD = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPORD)
|
---|
70 | TOOL_OPENWATCOM-WL_LINK_DLL_CMDS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_CMDS)
|
---|
71 |
|
---|
72 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_OUTPUT = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT)
|
---|
73 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_OUTPUT_MAYBE = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE)
|
---|
74 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_DEPEND = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPEND)
|
---|
75 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_DEPORD = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPORD)
|
---|
76 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_CMDS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_CMDS)
|
---|
77 |
|
---|
78 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_OUTPUT = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT)
|
---|
79 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_OUTPUT_MAYBE = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE)
|
---|
80 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_DEPEND = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPEND)
|
---|
81 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_DEPORD = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_DEPORD)
|
---|
82 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_CMDS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_CMDS)
|
---|
83 |
|
---|