Changeset 19525 for gsdl/trunk


Ignore:
Timestamp:
2009-05-19T17:00:32+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/packages/gdbm/gdbm-1.8.3/win32.mak

    r18058 r19525  
    2525###########################################################################
    2626
     27DEBUG = 0
     28
    2729AR = lib
    2830CC = cl
    29 CPPFLAGS =
     31
     32
     33!IF $(DEBUG)
     34CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     35!ELSE
     36CXXFLAGS =
     37!ENDIF
     38
    3039DEFS = -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
    3140INCLUDES = -I"windows"
    3241LDFLAGS =
    3342
    34 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     43COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    3544
    3645o = .obj
Note: See TracChangeset for help on using the changeset viewer.