Changeset 970
- Timestamp:
- Feb 22, 2008, 11:16:17 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makefile
r907 r970 196 196 @echo Checking required EXEs 197 197 if not exist internal\mkstr.exe internal\mkstr.exe 198 !ifndef DEBUG 198 199 lxlite -c:exehdr internal\mkstr.exe >nul 200 !else 201 ! ifeq DEBUG 0 202 lxlite -c:exehdr internal\mkstr.exe >nul 203 ! endif 204 !endif 199 205 200 206 !endif … … 239 245 $(BASERES).dll: $(BASERES).res 240 246 @if not exist $@ echo $@ missing 247 !ifndef DEBUG 241 248 lxlite $@ /x+ /b- 242 249 lxlite $@ /c:minstub 250 !else 251 ! ifeq DEBUG 0 252 lxlite $@ /x+ /b- 253 lxlite $@ /c:minstub 254 ! endif 255 !endif 243 256 $(RC) $(RCFLAGS2) $(BASERES).res $@ 257 !ifndef DEBUG 244 258 lxlite $@ /x- /b- 259 !else 260 ! ifeq DEBUG 0 261 lxlite $@ /x- /b- 262 ! endif 263 !endif 245 264 bldlevel $@ 246 265 … … 265 284 lxlite: $(BASE).dll $(BASERES).dll .symbolic 266 285 # !lxlite /x- /b- $? 286 !ifndef DEBUG 267 287 @for %f in ($(BASE).dll $(BASERES).dll) do !lxlite /x- /b- %f 288 !else 289 ! ifeq DEBUG 0 290 @for %f in ($(BASE).dll $(BASERES).dll) do !lxlite /x- /b- %f 291 ! endif 292 !endif 268 293 269 294 cleanobj: .symbolic -
trunk/makefile
r936 r970 41 41 !include makefile_pre.mk 42 42 43 43 44 all: dll $(BASE) allexe .symbolic 44 45 … … 76 77 # Apply to each *.mak for other exes 77 78 lxlite:: *.mak .symbolic 78 @for %f in ($<) do $(MAKE) -f %f $(__MAKEOPTS__) $(DEBUG_OPT) lxlite 79 !ifdef DEBUG 80 ! ifeq DEBUG 0 81 @for %f in ($<) do $(MAKE) -f %f $(__MAKEOPTS__) $(DEBUG_OPT) lxlite 82 ! endif 83 !else 84 @for %f in ($<) do $(MAKE) -f %f $(__MAKEOPTS__) $(DEBUG_OPT) lxlite 85 !endif 79 86 80 87 # Apply to dlls 81 88 lxlite:: .symbolic 82 89 cd dll 90 !ifdef DEBUG 91 ! ifeq DEBUG 0 92 $(MAKE) $(__MAKEOPTS__) $(DEBUG_OPT) lxlite 93 ! endif 94 !else 83 95 $(MAKE) $(__MAKEOPTS__) $(DEBUG_OPT) lxlite 96 !endif 84 97 cd .. 85 98
Note:
See TracChangeset
for help on using the changeset viewer.