Changeset 12080


Ignore:
Timestamp:
Oct 28, 1999, 5:23:05 PM (26 years ago)
Author:
sandervl
Message:

makefile change

Location:
tags/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/include/pdwin32.vac3.dbg

    r11597 r12080  
    1 # $Id: pdwin32.vac3.dbg,v 1.12 1999-09-22 09:46:18 sandervl Exp $
     1# $Id: pdwin32.vac3.dbg,v 1.13 1999-10-28 15:21:34 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    2727CXXFLAGS_ODINCRT = -Q  -Si -Ti -Tm+ -Ge- -Ss+ -W3 -Gm+ /Gn- -I$(PDWIN32_INCLUDE)\Win -I. -D__WIN32OS2__ -D__WINE__ -DDEBUG
    2828ASFLAGS          = -Sc -Sv:ALP +Od
     29!ifdef NODEBUGINFO
     30LDFLAGS          = -Q  -Si -Ti- -Ge- -Ss+ -W3 -Gm+ /B"/noe /NODEBUG /NOD /packcode /packdata /exepack"
     31LDFLAGS_ODINCRT  = -Q  -Si -Ti- -Ge- -Ss+ -W3 -Gm+ /B"/noe /NODEBUG /NOD /packcode /packdata /exepack"
     32!else
    2933LDFLAGS          = -Q  -Si -Ti -Ge- -Ss+ -W3 -Gm+ /B"/noe /NOD /dbgpack /packcode /packdata /exepack"
    3034LDFLAGS_ODINCRT  = -Q  -Si -Ti -Ge- -Ss+ -W3 -Gm+ /B"/noe /dbgpack /packcode /packdata /exepack"
     35!endif
    3136IMPLIBFLAGS = /nologo
    3237
  • TabularUnified tags/trunk/makefile

    r11523 r12080  
    1 # $Id: makefile,v 1.5 1999-09-14 15:58:42 sandervl Exp $
     1# $Id: makefile,v 1.6 1999-10-28 15:23:05 sandervl Exp $
    22
    33#
     
    77#
    88#
    9 #       Usage: nmake ( debug | release | all | clean )
     9#       Usage: nmake ( debug | nodebuginfo | release | all | clean )
    1010#
    1111#            debug: Change to a debug build.
     12#            nodebuginfo: Change to a debug build without debug info in binaries
    1213#            release: Change to a release build.
    1314#            all: Build the entire tree.
     
    3334                nmake -nologo all DEBUG=1
    3435
     36nodebuginfo:    odin_libraries  needed_tools
     37                cd src
     38                nmake -nologo all DEBUG=1 NODEBUGINFO=1
     39
    3540release:        odin_libraries  needed_tools
    3641                cd src
  • TabularUnified tags/trunk/src/kernel32/makefile

    r12078 r12080  
    1 # $Id: makefile,v 1.50 1999-10-28 12:01:12 sandervl Exp $
     1# $Id: makefile,v 1.51 1999-10-28 15:22:09 sandervl Exp $
    22
    33#
     
    4646#        $(LD) $(LDFLAGS) /Fm /Fe$@ /B"/FREE" @$(TARGET).lrf
    4747!ifdef DEBUG
    48 #       icc -Si -Ti -Ge- -Ss+ -W3 -Gm+ /B"/noe /NOD /NOFREE" @$(TARGET).lrf
     48!ifdef NODEBUGINFO
     49        ilink /nodeb /map /noe /NOD /NoLogo /NOFREE @$(TARGET).lrf
     50!else
    4951        ilink /de /map  /noe /NOD /dbgpack /NoLogo /NOFREE @$(TARGET).lrf
     52!endif
    5053!else
    5154        ilink /map  /noe /NOD /NoLogo /FREE @$(TARGET).lrf
  • TabularUnified tags/trunk/src/makefile

    r12000 r12080  
    1 # $Id: makefile,v 1.27 1999-10-23 12:35:36 sandervl Exp $
     1# $Id: makefile,v 1.28 1999-10-28 15:22:35 sandervl Exp $
    22
    33#
     
    1919MAKE_CMD = nmake -nologo
    2020!endif
     21
     22!ifdef NODEBUGINFO
     23MAKE_CMD = $(MAKE_CMD) NODEBUGINFO=1
     24!endif
     25
    2126
    2227all:
Note: See TracChangeset for help on using the changeset viewer.