Last change
on this file since 9165 was 9165, checked in by bird, 23 years ago |
Added new tools. Restructured tools. More options. Fixes.
|
File size:
1.1 KB
|
Line | |
---|
1 | # $Id: setup.os2ld.mk,v 1.1 2002-08-29 10:01:43 bird Exp $
|
---|
2 |
|
---|
3 | #
|
---|
4 | # LD (link editor) fanout.
|
---|
5 | #
|
---|
6 | _LD_INCLUDED = 0
|
---|
7 | !ifdef LD_USE_WLINK
|
---|
8 | _LD_INCLUDED = 1
|
---|
9 | TOOL_MAPSYM_TYPE = WLINK
|
---|
10 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)wlink.mk
|
---|
11 | !endif
|
---|
12 | !ifdef LD_USE_ILINK
|
---|
13 | _LD_INCLUDED = 1
|
---|
14 | TOOL_MAPSYM_TYPE = ILINK
|
---|
15 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)ilink.mk
|
---|
16 | !endif
|
---|
17 | !ifdef LD_USE_LINK
|
---|
18 | _LD_INCLUDED = 1
|
---|
19 | TOOL_MAPSYM_TYPE = LINK
|
---|
20 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)link.mk
|
---|
21 | !endif
|
---|
22 | !ifdef LD_USE_LINK386
|
---|
23 | _LD_INCLUDED = 1
|
---|
24 | TOOL_MAPSYM_TYPE = LINK386
|
---|
25 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)link386.mk
|
---|
26 | _TOOL_MAPSYM_ =
|
---|
27 | !endif
|
---|
28 |
|
---|
29 |
|
---|
30 | # Use default one (for the given environment)
|
---|
31 | !if !$(_LD_INCLUDED)
|
---|
32 | ! if "$(BUILD_ENV:WAT=xxx)" != "$(BUILD_ENV)" # (watcom check)
|
---|
33 | TOOL_MAPSYM_TYPE = WLINK
|
---|
34 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)wlink.mk
|
---|
35 | ! else
|
---|
36 | ! if "$(LD_FORMAT)" == "NE"
|
---|
37 | TOOL_MAPSYM_TYPE = LINK
|
---|
38 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)link.mk
|
---|
39 | ! else
|
---|
40 | TOOL_MAPSYM_TYPE = ILINK
|
---|
41 | ! include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)ilink.mk
|
---|
42 | ! endif
|
---|
43 | ! endif
|
---|
44 | !endif
|
---|
45 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.