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

    r18864 r19521  
    3838
    3939GSDL_VC4 = 0
     40DEBUG = 0
    4041LOCAL_LIBRARY = 0
    4142DLL = 0
     
    4445USE_SQLITE = 1
    4546
     47!IF $(DEBUG)
     48CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     49!ELSE
     50CXXFLAGS =
     51!ENDIF
    4652
    4753!IF $(GSDL_VC4)
    48 CPPFLAGS = -GX
     54CXXFLAGS = $(CXXFLAGS) -GX
    4955!ELSE
    50 CPPFLAGS = -EHsc
     56CXXFLAGS = $(CXXFLAGS) -EHsc
    5157!ENDIF
    5258
    5359!IF $(DLL)
    54 CPPFLAGS = $(CPPFLAGS) -MD
     60CXXFLAGS = $(CXXFLAGS) -MD
    5561!ELSE
    5662!IF ($(DLLDEBUG))
    57 CPPFLAGS = $(CPPFLAGS) -MDd
     63CXXFLAGS = $(CXXFLAGS) -MDd
    5864!ENDIF
    5965!ENDIF
     
    9399
    94100
    95 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     101COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    96102LINK = $(CC) -nologo -Fe"$@"
    97103
Note: See TracChangeset for help on using the changeset viewer.