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

    r18075 r19523  
    3333AR = lib
    3434CC = cl
     35DEBUG = 0
     36
     37!IF $(DEBUG)
     38CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     39!ELSE
     40CXXFLAGS =
     41!ENDIF
    3542
    3643!IF $(GSDL_VC4)
    37 CPPFLAGS = -GX
     44CXXFLAGS = $(CXXFLAGS) -GX
    3845!ELSE
    39 CPPFLAGS = -EHsc
     46CXXFLAGS = $(CXXFLAGS) -EHsc
    4047!ENDIF
    4148
     
    5360       "$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\gdbm.lib"
    5461
    55 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     62COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    5663LINK = $(CC) -nologo $(LDFLAGS)
    5764
Note: See TracChangeset for help on using the changeset viewer.