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

    r18077 r19521  
    3434
    3535GSDL_VC4 = 0
     36DEBUG = 0
    3637DLL = 0
    3738DLLDEBUG = 0
     
    3940USE_MSSQL = 0
    4041
     42!IF $(DEBUG)
     43CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     44!ELSE
     45CXXFLAGS =
     46!ENDIF
     47
    4148
    4249!IF $(GSDL_VC4)
    43 CPPFLAGS = -GX
     50CXXFLAGS = $(CXXFLAGS) -GX
    4451!ELSE
    45 CPPFLAGS = -EHsc
     52CXXFLAGS = $(CXXFLAGS) -EHsc
    4653!ENDIF
    4754
    4855!IF $(DLL)
    49 CPPFLAGS = $(CPPFLAGS) -MD
     56CXXFLAGS = $(CXXFLAGS) -MD
    5057!ELSE
    5158!IF ($(DLLDEBUG))
    52 CPPFLAGS = $(CPPFLAGS) -MDd
     59CXXFLAGS = $(CXXFLAGS) -MDd
    5360!ENDIF
    5461!ENDIF
     
    8693
    8794
    88 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     95COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    8996
    9097
Note: See TracChangeset for help on using the changeset viewer.