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

    r16574 r19521  
    1010AR = lib
    1111
     12DEBUG = 0
    1213DLL = 0
    1314DLLDEBUG = 0
    1415
     16!IF $(DEBUG)
     17CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     18!ELSE
     19CXXFLAGS =
     20!ENDIF
     21
    1522!IF $(GSDL_VC4)
    16 CPPFLAGS = -GX
     23CXXFLAGS = $(CXXFLAGS) -GX
    1724!ELSE
    18 CPPFLAGS = -EHsc
     25CXXFLAGS = $(CXXFLAGS) -EHsc
    1926!ENDIF
    2027
    2128!IF $(DLL)
    22 CPPFLAGS = $(CPPFLAGS) -MD
     29CXXFLAGS = $(CXXFLAGS) -MD
    2330!ELSE
    2431!IF ($(DLLDEBUG))
    25 CPPFLAGS = $(CPPFLAGS) -MDd
     32CXXFLAGS = $(CXXFLAGS) -MDd
    2633!ENDIF
    2734!ENDIF
     
    3138DEFS=-DHAVE_CONFIG_H -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
    3239INCLUDES= -I"$(GSDLHOME)"
    33 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     40COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    3441
    3542LIB_OBJS = MARC2709$o MARCtidy$o usMARC$o util$o strcasecmp$o
Note: See TracChangeset for help on using the changeset viewer.