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/src/phind/generate/win32.mak

    r16574 r19520  
    2626
    2727GSDLHOME = ..\..\..\..
     28DEBUG = 0
    2829GSDL_VC4 = 0
    2930STLPATH = "$(GSDLHOME)\common-src\packages\windows\stlport\stlport"
     
    3233CC = cl
    3334
     35!IF $(DEBUG)
     36CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     37!ELSE
     38CXXFLAGS =
     39!ENDIF
     40
    3441!IF $(GSDL_VC4)
    35 CPPFLAGS = -GX
     42CXXFLAGS = $(CXXFLAGS) -GX
    3643!ELSE
    37 CPPFLAGS = -EHsc
     44CXXFLAGS = $(CXXFLAGS) -EHsc
    3845!ENDIF
    3946
     
    4754LIBS=
    4855
    49 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     56COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    5057LINK = $(CC) -nologo $(LDFLAGS)
    5158
Note: See TracChangeset for help on using the changeset viewer.