[2065] | 1 | # $Id: OPENWATCOM-WL.kmk 3306 2020-01-15 01:16:43Z bird $
|
---|
| 2 | ## @file
|
---|
[2082] | 3 | # kBuild Tool Config - Open Watcom v1.4 and later, using wlink.
|
---|
[2065] | 4 | #
|
---|
| 5 | # @remarks wrc is untested, so are DLLs, and programs.
|
---|
| 6 |
|
---|
| 7 | #
|
---|
[3121] | 8 | # Copyright (c) 2008-2017 knut st. osmundsen <bird-kBuild-spam-xviiv@anduin.net>
|
---|
[2065] | 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 |
|
---|
[2082] | 35 | TOOL_OPENWATCOM-WL = Open Watcom v1.4 and later, using wlink.
|
---|
| 36 | TOOL_OPENWATCOM-WL_EXTENDS = OPENWATCOM
|
---|
[2083] | 37 | TOOL_OPENWATCOM-WL_LDFLAGS ?= Option Quiet
|
---|
[2082] | 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)
|
---|
[2068] | 43 |
|
---|
[2069] | 44 |
|
---|
[3303] | 45 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE_PRECIOUS = $(outbase).map $(outbase).rsp
|
---|
[2572] | 46 | TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE = $(outbase).sym
|
---|
[2082] | 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
|
---|
[2083] | 50 | $(QUIET)$(APPEND) -tn $(outbase).rsp \
|
---|
| 51 | $(if $(flags),'$(flags)',) \
|
---|
[2663] | 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')
|
---|
[2749] | 57 | $(QUIET)$(call TOOL_OPENWATCOM_ENV_SETUP_BD) \
|
---|
[2082] | 58 | $(TOOL_OPENWATCOM_WLINK) @$(outbase).rsp
|
---|
[2068] | 59 | $(if $(filter %.res,$(objs)), $(QUIET)$(call TOOL_OPENWATCOM_ENV_SETUP) \
|
---|
| 60 | $(TOOL_OPENWATCOM_RC) \
|
---|
[2065] | 61 | $(filter -bt=%,$(flags)) \
|
---|
[2572] | 62 | /fe=$(call TOOL_OPENWATCOM_FIX_SLASHES,$(out)) \
|
---|
| 63 | $(call TOOL_OPENWATCOM_FIX_SLASHES,$(filter %.res,$(objs))))
|
---|
[2065] | 64 | endef
|
---|
| 65 |
|
---|
[3306] | 66 | TOOL_OPENWATCOM-WL_LINK_DLL_OUTPUT_MAYBE_PRECIOUS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE_PRECIOUS)
|
---|
| 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)
|
---|
[2065] | 71 |
|
---|
[3306] | 72 | TOOL_OPENWATCOM-WL_LINK_SYSMOD_OUTPUT_MAYBE_PRECIOUS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE_PRECIOUS)
|
---|
| 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)
|
---|
[2065] | 77 |
|
---|
[3306] | 78 | TOOL_OPENWATCOM-WL_LINK_MISCBIN_OUTPUT_MAYBE_PRECIOUS = $(TOOL_OPENWATCOM-WL_LINK_PROGRAM_OUTPUT_MAYBE_PRECIOUS)
|
---|
| 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)
|
---|
[2082] | 83 |
|
---|