Changeset 12080
- Timestamp:
- Oct 28, 1999, 5:23:05 PM (26 years ago)
- 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.1 2 1999-09-22 09:46:18sandervl Exp $1 # $Id: pdwin32.vac3.dbg,v 1.13 1999-10-28 15:21:34 sandervl Exp $ 2 2 # ODIN / win32os2 Project 3 3 # … … 27 27 CXXFLAGS_ODINCRT = -Q -Si -Ti -Tm+ -Ge- -Ss+ -W3 -Gm+ /Gn- -I$(PDWIN32_INCLUDE)\Win -I. -D__WIN32OS2__ -D__WINE__ -DDEBUG 28 28 ASFLAGS = -Sc -Sv:ALP +Od 29 !ifdef NODEBUGINFO 30 LDFLAGS = -Q -Si -Ti- -Ge- -Ss+ -W3 -Gm+ /B"/noe /NODEBUG /NOD /packcode /packdata /exepack" 31 LDFLAGS_ODINCRT = -Q -Si -Ti- -Ge- -Ss+ -W3 -Gm+ /B"/noe /NODEBUG /NOD /packcode /packdata /exepack" 32 !else 29 33 LDFLAGS = -Q -Si -Ti -Ge- -Ss+ -W3 -Gm+ /B"/noe /NOD /dbgpack /packcode /packdata /exepack" 30 34 LDFLAGS_ODINCRT = -Q -Si -Ti -Ge- -Ss+ -W3 -Gm+ /B"/noe /dbgpack /packcode /packdata /exepack" 35 !endif 31 36 IMPLIBFLAGS = /nologo 32 37 -
TabularUnified tags/trunk/makefile ¶
r11523 r12080 1 # $Id: makefile,v 1. 5 1999-09-14 15:58:42sandervl Exp $1 # $Id: makefile,v 1.6 1999-10-28 15:23:05 sandervl Exp $ 2 2 3 3 # … … 7 7 # 8 8 # 9 # Usage: nmake ( debug | release | all | clean )9 # Usage: nmake ( debug | nodebuginfo | release | all | clean ) 10 10 # 11 11 # debug: Change to a debug build. 12 # nodebuginfo: Change to a debug build without debug info in binaries 12 13 # release: Change to a release build. 13 14 # all: Build the entire tree. … … 33 34 nmake -nologo all DEBUG=1 34 35 36 nodebuginfo: odin_libraries needed_tools 37 cd src 38 nmake -nologo all DEBUG=1 NODEBUGINFO=1 39 35 40 release: odin_libraries needed_tools 36 41 cd src -
TabularUnified tags/trunk/src/kernel32/makefile ¶
r12078 r12080 1 # $Id: makefile,v 1.5 0 1999-10-28 12:01:12sandervl Exp $1 # $Id: makefile,v 1.51 1999-10-28 15:22:09 sandervl Exp $ 2 2 3 3 # … … 46 46 # $(LD) $(LDFLAGS) /Fm /Fe$@ /B"/FREE" @$(TARGET).lrf 47 47 !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 49 51 ilink /de /map /noe /NOD /dbgpack /NoLogo /NOFREE @$(TARGET).lrf 52 !endif 50 53 !else 51 54 ilink /map /noe /NOD /NoLogo /FREE @$(TARGET).lrf -
TabularUnified tags/trunk/src/makefile ¶
r12000 r12080 1 # $Id: makefile,v 1.2 7 1999-10-23 12:35:36sandervl Exp $1 # $Id: makefile,v 1.28 1999-10-28 15:22:35 sandervl Exp $ 2 2 3 3 # … … 19 19 MAKE_CMD = nmake -nologo 20 20 !endif 21 22 !ifdef NODEBUGINFO 23 MAKE_CMD = $(MAKE_CMD) NODEBUGINFO=1 24 !endif 25 21 26 22 27 all:
Note:
See TracChangeset
for help on using the changeset viewer.