Changeset 980


Ignore:
Timestamp:
Feb 25, 2008, 12:45:39 AM (17 years ago)
Author:
John Small
Message:

Additional changes for ticket 229: Suppress lxlite on debug builds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile_post.mk

    r976 r980  
    3737$(BASE).exe: $(BASE).res .explicit
    3838  @if not exist $@ echo $@ missing
    39   lxlite $@ /x+ /b-
    40   lxlite $@ /c:minstub
     39!ifdef DEBUG
     40!  ifeq DEBUG 0
     41     lxlite $@ /x+ /b-
     42     lxlite $@ /c:minstub
     43!  endif
     44!else
     45     lxlite $@ /x+ /b-
     46     lxlite $@ /c:minstub
     47!endif
    4148  $(RC) $(RCFLAGS2) $(BASE).res $@
     49!ifdef DEBUG
     50!  ifeq DEBUG 0
     51     lxlite $@ /x- /b-
     52!  endif
     53!else
    4254  lxlite $@ /x- /b-
     55!endif
    4356  bldlevel $@
    4457
     
    4659
    4760lxlite:: $(BASE).exe .symbolic .explicit
     61!ifdef DEBUG
     62!  ifeq DEBUG 0
     63     lxlite /x- /b- $?
     64!  endif
     65!else
    4866  lxlite /x- /b- $?
     67!endif
    4968
    5069clean:: .symbolic .explicit
Note: See TracChangeset for help on using the changeset viewer.