Ignore:
Timestamp:
2009-05-19T16:59:34+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
  • indexers/trunk/packages/unac/win32.mak

    r16583 r19524  
    44AR = lib
    55
     6DEBUG = 0
    67DLL = 0
    78DLLDEBUG = 0
     
    910
    1011INCLUDES = -I. -DUNAC_VERSION=\"1.7.0\"
     12
     13!IF $(DEBUG)
     14CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     15!ELSE
     16CXXFLAGS =
     17!ENDIF
     18
    1119!IF $(GSDL_VC4)
    12 CPPFLAGS = -GX
     20CXXFLAGS = $(CXXFLAGS) -GX
    1321!ELSE
    14 CPPFLAGS = -EHsc
     22CXXFLAGS = $(CXXFLAGS) -EHsc
    1523!ENDIF
    1624
    1725!IF $(DLL)
    18 CPPFLAGS = $(CPPFLAGS) -MD
     26CXXFLAGS = $(CXXFLAGS) -MD
    1927!ELSE
    2028!IF ($(DLLDEBUG))
    21 CPPFLAGS = $(CPPFLAGS) -MDd
     29CXXFLAGS = $(CXXFLAGS) -MDd
    2230!ENDIF
    2331!ENDIF
    2432
    2533
    26 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     34COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    2735LINK = $(CC) -nologo $(LDFLAGS)
    2836
Note: See TracChangeset for help on using the changeset viewer.