Ignore:
Timestamp:
2009-05-19T16:52:48+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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/build-src/packages/isis-gdl/win32.mak

    r16574 r19520  
    66AR = lib
    77
     8DEBUG = 0
    89DLL = 0
    910DLLDEBUG = 0
    1011
     12!IF $(DEBUG)
     13CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     14!ELSE
     15CXXFLAGS =
     16!ENDIF
     17
    1118!IF $(GSDL_VC4)
    12 CPPFLAGS = -GX
     19CXXFLAGS = $(CXXFLAGS) -GX
    1320!ELSE
    14 CPPFLAGS = -EHsc
     21CXXFLAGS = $(CXXFLAGS) -EHsc
    1522!ENDIF
    1623
    1724!IF $(DLL)
    18 CPPFLAGS = $(CPPFLAGS) -MD
     25CXXFLAGS = $(CXXFLAGS) -MD
    1926!ELSE
    2027!IF ($(DLLDEBUG))
    21 CPPFLAGS = $(CPPFLAGS) -MDd
     28CXXFLAGS = $(CXXFLAGS) -MDd
    2229!ENDIF
    2330!ENDIF
    2431
    25 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     32COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    2633LINK = $(CC) -nologo $(LDFLAGS)
    2734
Note: See TracChangeset for help on using the changeset viewer.