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

    r18075 r19523  
    3333AR = lib
    3434CC = cl
    35 CPPFLAGS =
     35DEBUG = 0
     36GSDL_VC4 = 0
     37
     38!IF $(DEBUG)
     39CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     40!ELSE
     41CXXFLAGS =
     42!ENDIF
     43
     44!IF $(GSDL_VC4)
     45CXXFLAGS = $(CXXFLAGS) -GX
     46!ELSE
     47CXXFLAGS = $(CXXFLAGS) -EHsc
     48!ENDIF
     49
    3650LDFLAGS =
    3751
     
    4660LIBS = "$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\gdbm.lib"
    4761
    48 COMPILE = $(CC) -c -GX $(DEFS) $(INCLUDES)
     62COMPILE = $(CC) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    4963LINK = $(CC) $(LDFLAGS)
    5064
Note: See TracChangeset for help on using the changeset viewer.