- Timestamp:
- Feb 26, 2008, 3:51:21 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makefile
r976 r983 75 75 !endif 76 76 77 !ifdef DEBUG #if DEBUG is defined78 ! ifeq DEBUG 1 #if it is 179 ! ifdef %PERLLIB #if PRELLIB env. var is defined (i.e. Perl is installed?)80 77 SYMS = $(BASE).sym $(BASERES).sym internal\mkstr.sym #set a targets for building SYM files 81 ! endif82 ! endif83 !endif84 78 85 79 # Some flags are order dependent - see OpenWatcom docs … … 175 169 ipf\fm3.hlp & 176 170 internal\mkstr.exe & 177 fm3res.str $(SYMS) 171 fm3res.str 172 173 dllsyms: $(SYMS) .symbolic 178 174 179 175 $(BASE).dll $(BASE).lib: $(OBJS) $(BASE).def $(BASE).lrf … … 249 245 250 246 $(BASE).sym: $(BASE).map 247 !ifdef %PERLLIB 251 248 @echo Processing: $? 252 249 -perl ..\debugtools\mapsymw.pl $? 250 !else 251 @echo PERL environment not found. Skipping SYM file 252 !endif 253 253 254 254 $(BASERES).sym: $(BASERES).map 255 !ifdef %PERLLIB 255 256 @echo Processing: $? 256 257 -perl ..\debugtools\mapsymw.pl $? 258 !else 259 @echo PERL environment not found. Skipping SYM file 260 !endif 257 261 258 262 internal\mkstr.sym: internal\mkstr.map 263 !ifdef %PERLLIB 259 264 @echo Processing: $? 260 265 cd internal 261 266 -perl ..\..\debugtools\mapsymw.pl mkstr.map 262 267 cd .. 268 !else 269 @echo PERL environment not found. Skipping SYM file 270 !endif 263 271 264 272 !else
Note:
See TracChangeset
for help on using the changeset viewer.