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/protocol/win32.mak

    r18048 r19521  
    3535
    3636GSDL_VC4 = 0
     37DEBUG = 0
    3738DLL = 0
    3839DLLDEBUG = 0
    3940
     41!IF $(DEBUG)
     42CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     43!ELSE
     44CXXFLAGS =
     45!ENDIF
    4046
    4147!IF $(GSDL_VC4)
    42 CPPFLAGS = -GX
     48CXXFLAGS = $(CXXFLAGS) -GX
    4349!ELSE
    44 CPPFLAGS = -EHsc
     50CXXFLAGS = $(CXXFLAGS) -EHsc
    4551!ENDIF
    4652
    4753!IF $(DLL)
    48 CPPFLAGS = $(CPPFLAGS) -MD
     54CXXFLAGS = $(CXXFLAGS) -MD
    4955!ELSE
    5056!IF ($(DLLDEBUG))
    51 CPPFLAGS = $(CPPFLAGS) -MDd
     57CXXFLAGS = $(CXXFLAGS) -MDd
    5258!ENDIF
    5359!ENDIF
     
    6773
    6874
    69 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     75COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    7076
    7177
Note: See TracChangeset for help on using the changeset viewer.