Ignore:
Timestamp:
2009-05-19T16:54:40+12:00 (15 years ago)
Author:
ak19
Message:

Dr Bainbridge updated the Windows makefiles to 1. Take the DEBUG flag so that we can recompile all of GS2 in the Vis C++ 2005 Express Edition command prompt and then use its Debugger on the C code. 2. Now GS2 make clean command cleans up all object and lib files that its make generates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/src/w32apachectl/win32.mak

    r19345 r19521  
    4545GSDL_VC4 = 0
    4646LOCAL_LIBRARY = 0
     47DEBUG = 0
    4748DLL = 0
    4849DLLDEBUG = 0
    4950
     51!IF $(DEBUG)
     52CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     53!ELSE
     54CXXFLAGS =
     55!ENDIF
    5056
    5157!IF $(GSDL_VC4)
    52 CPPFLAGS = -GX
     58CXXFLAGS = $(CXXFLAGS) -GX
    5359!ELSE
    54 CPPFLAGS = -EHsc
     60CXXFLAGS = $(CXXFLAGS) -EHsc
    5561!ENDIF
    5662
    57 CPPFLAGS = $(CPPFLAGS) -MT
     63CXXFLAGS = $(CXXFLAGS) -MT
    5864
    5965CC = cl
     
    7379
    7480
    75 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     81COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    7682LINK = $(CC) -nologo $(LDFLAGS) -Fe"$@"
    7783
Note: See TracChangeset for help on using the changeset viewer.