Changeset 976
- Timestamp:
- Feb 23, 2008, 8:58:02 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 19 edited
-
av2.mak (modified) (2 diffs)
-
databar.mak (modified) (2 diffs)
-
dirsize.mak (modified) (2 diffs)
-
dll/makefile (modified) (3 diffs)
-
eas.mak (modified) (2 diffs)
-
fm4.mak (modified) (2 diffs)
-
global.mak (modified) (2 diffs)
-
ini.mak (modified) (2 diffs)
-
killproc.mak (modified) (2 diffs)
-
makefile_post.mk (modified) (2 diffs)
-
makefile_pre.mk (modified) (3 diffs)
-
sysinfo.mak (modified) (2 diffs)
-
undel.mak (modified) (2 diffs)
-
vcollect.mak (modified) (2 diffs)
-
vdir.mak (modified) (2 diffs)
-
viewinfs.mak (modified) (2 diffs)
-
vtree.mak (modified) (2 diffs)
-
warpin/bld_fm2_wpidirs.txt (modified) (2 diffs)
-
warpin/fm2.wis.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/av2.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=av2 … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc dll\fm3dll.h icons\view3.ico bitmaps\*.bmp -
trunk/databar.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=databar … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc dll\fm3dll.h icons\$(BASE).ico bitmaps\*.bmp -
trunk/dirsize.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=dirsize … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: dirsize.h dll\fm3dll.h $(BASE).rc $(BASE).dlg -
trunk/dll/makefile
r973 r976 75 75 !endif 76 76 77 !ifdef DEBUG #if DEBUG is defined 78 ! ifeq DEBUG 1 #if it is 1 79 ! ifdef %PERLLIB #if PRELLIB env. var is defined (i.e. Perl is installed?) 80 SYMS = $(BASE).sym $(BASERES).sym internal\mkstr.sym #set a targets for building SYM files 81 ! endif 82 ! endif 83 !endif 84 77 85 # Some flags are order dependent - see OpenWatcom docs 78 86 # -bc console app … … 167 175 ipf\fm3.hlp & 168 176 internal\mkstr.exe & 169 fm3res.str 177 fm3res.str $(SYMS) 170 178 171 179 $(BASE).dll $(BASE).lib: $(OBJS) $(BASE).def $(BASE).lrf … … 239 247 @%append $^@ name $(BASERES) 240 248 @for %f in ($(BASERES).obj) do @%append $^@ file %f 249 250 $(BASE).sym: $(BASE).map 251 @echo Processing: $? 252 -perl ..\debugtools\mapsymw.pl $? 253 254 $(BASERES).sym: $(BASERES).map 255 @echo Processing: $? 256 -perl ..\debugtools\mapsymw.pl $? 257 258 internal\mkstr.sym: internal\mkstr.map 259 @echo Processing: $? 260 cd internal 261 -perl ..\..\debugtools\mapsymw.pl mkstr.map 262 cd .. 241 263 242 264 !else -
trunk/eas.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=eas … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc dll\fm3dll.h icons\$(BASE).ico bitmaps\*.bmp -
trunk/fm4.mak
r691 r976 4 4 5 5 # 14 Jun 07 SHL Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=fm4 … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico bitmaps\*.bmp -
trunk/global.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=global … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico bitmaps\*.bmp -
trunk/ini.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=ini … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico bitmaps\file.bmp -
trunk/killproc.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=killproc … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico -
trunk/makefile_post.mk
r719 r976 5 5 # 16 Apr 06 SHL Add lxlite target 6 6 # 02 Jun 07 SHL Convert to OpenWatcom 7 # 23 Feb 08 JBS Add support for building SYM files (Ticket 226) 7 8 8 9 !ifndef MAKERES … … 26 27 @%append $^@ library dll\fm3dll.lib 27 28 @%append $^@ library os2386.lib 29 30 $(BASE).sym: $(BASE).map 31 @echo Processing: $? 32 -perl debugtools\mapsymw.pl $? 28 33 29 34 !else -
trunk/makefile_pre.mk
r907 r976 11 11 # 26 Sep 07 SHL Support USE_WRC from environment 12 12 # 03 Jan 08 SHL Switch to wrc.exe default; support USE_RC from environment 13 # 23 Jan 08 JBS Add support for building SYM files (Ticket 226) 13 14 14 15 CC = wcc386 … … 38 39 !endif 39 40 !endif 41 42 !ifdef DEBUG #if DEBUG is defined 43 ! ifeq DEBUG 1 #if it is 1 44 ! ifdef %PERLLIB #if PRELLIB env. var is defined (i.e. Perl is installed?) 45 SYMS = $(BASE).sym #set a target for building SYM files 46 ! endif 47 ! endif 48 !endif 40 49 41 50 # Some flags are order dependent - see OpenWatcom docs … … 83 92 84 93 .SUFFIXES: 85 .SUFFIXES: .obj .c .res .rc .ipf 94 .SUFFIXES: .obj .c .res .rc .ipf .sym .map 86 95 87 96 !if $(USE_RC) -
trunk/sysinfo.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=sysinfo … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico -
trunk/undel.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=undel … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico -
trunk/vcollect.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=vcollect … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc dll\fm3dll.h icons\collect.ico bitmaps\*.bmp -
trunk/vdir.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=vdir … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc dll\fm3dll.h icons\$(BASE).ico bitmaps\*.bmp -
trunk/viewinfs.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=viewinfs … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\$(BASE).ico -
trunk/vtree.mak
r695 r976 4 4 5 5 # 16 Jun 07 GKY Convert to OpenWatcom 6 # 23 Feb 08 JBS Add support for building SYM files 6 7 7 8 BASE=vtree … … 9 10 !include makefile_pre.mk 10 11 11 all: $(BASE).exe $(BASE).res .symbolic12 all: $(BASE).exe $(BASE).res $(SYMS) .symbolic 12 13 13 14 $(BASE).res: $(BASE).rc icons\tree.ico bitmaps\*.bmp -
trunk/warpin/bld_fm2_wpidirs.txt
r853 r976 1 1 ; 2 2 ; $Id$ 3 ; 4 ; Change log: 5 ; 23 Feb 08 JBS: Added lines for debugging support package (#10) 3 6 ; 4 7 ; This is a file which will be used to simplify the process of … … 107 110 FILE: shdwmgr.cmd 1 . Utils 108 111 109 ;NOFILESPACKAGE: 10 112 FILE: logfm2.cmd 10 . Debug 113 FILE: *.map 10 . Debug 114 FILE: *.sym 10 . . 115 FILE: *.map 10 dll Debug 116 FILE: *.sym 10 dll . 117 FILE: *.map 10 dll\internal Debug 118 FILE: *.sym 10 dll\internal . 119 120 ;NOFILESPACKAGE: 100 -
trunk/warpin/fm2.wis.in
r969 r976 3 3 FM2.WIS.IN is used as input to SED which then replaces/inserts 4 4 various text and creates FM2.WIS during the FM/2 build process. 5 6 Change log 7 22 Feb 08 JBS Ticket 231: Stop auto-select of FM/2 Utilities of already installed. 8 23 Feb 08 JBS Ticket 226: Add debugging support package 5 9 6 10 NOTE: If a NON-EXTERNAL package (i.e. a package whose files … … 21 25 WARPIN VERSION 0.9.20 is required for PACKAGEID's with revision levels. 22 26 WARPIN VERSION 0.9.9 is required for EXTRACTFROMPCK. 23 24 22 Feb 08 JBS Ticket 231: Stop auto-select of FM/2 Utilities of already installed.25 27 26 28 --> … … 127 129 </PCK> 128 130 131 <PCK INDEX=10 132 PACKAGEID="Netlabs\FM2\FM2 Debugging support@@@FM2_VER@@@" 133 TITLE="FM/2 Debugging support" 134 TARGET="$(1)" 135 FIXED 136 CREATEOBJECT='WPProgram|FM/2^with logging|<FM3_Folder>|EXENAME=*;STARTUPDIR=$(1)\Debug;PARAMETERS=/c $(1)\Debug\LogFM2.cmd [Enter enter the name for a log file:];MINIMIZED=YES;OBJECTID=<FM2WithLogging>;' 137 >This package contains files which support efforts 138 to debug problems with FM/2. Normally they will 139 not be needed. 140 </PCK> 141 129 142 </HEAD> 130 143
Note:
See TracChangeset
for help on using the changeset viewer.
