Changeset 970 for trunk/dll


Ignore:
Timestamp:
Feb 22, 2008, 11:16:17 PM (18 years ago)
Author:
John Small
Message:

Ticket 229: Suppress lxlite processing when DEBUG=1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makefile

    r907 r970  
    196196  @echo Checking required EXEs
    197197  if not exist internal\mkstr.exe internal\mkstr.exe
     198!ifndef DEBUG
    198199  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
    199205
    200206!endif
     
    239245$(BASERES).dll: $(BASERES).res
    240246  @if not exist $@ echo $@ missing
     247!ifndef DEBUG
    241248  lxlite $@ /x+ /b-
    242249  lxlite $@ /c:minstub
     250!else
     251! ifeq DEBUG 0
     252    lxlite $@ /x+ /b-
     253    lxlite $@ /c:minstub
     254! endif
     255!endif
    243256  $(RC) $(RCFLAGS2) $(BASERES).res $@
     257!ifndef DEBUG
    244258  lxlite $@ /x- /b-
     259!else
     260! ifeq DEBUG 0
     261    lxlite $@ /x- /b-
     262! endif
     263!endif
    245264  bldlevel $@
    246265
     
    265284lxlite: $(BASE).dll $(BASERES).dll .symbolic
    266285# !lxlite /x- /b- $?
     286!ifndef DEBUG
    267287   @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
    268293
    269294cleanobj: .symbolic
Note: See TracChangeset for help on using the changeset viewer.