Ignore:
Timestamp:
2009-05-19T16:58:20+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/common-src/src/getpw/win32.mak

    r19275 r19523  
    3333GSDL_VC4 = 0
    3434LOCAL_LIBRARY = 0
     35DEBUG = 0
    3536DLL = 0
    3637DLLDEBUG = 0
     
    3839USE_MSSQL = 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
     
    6975
    7076
    71 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     77COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    7278LINK = $(CC) -nologo $(LDFLAGS)
    7379
Note: See TracChangeset for help on using the changeset viewer.