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

    r16574 r19520  
    2727GSDLHOME = ..\..\..
    2828GSDL_VC4 = 0
     29DEBUG = 0
    2930
    3031AR = lib
    3132CC = cl
    3233
     34!IF $(DEBUG)
     35CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     36!ELSE
     37CXXFLAGS =
     38!ENDIF
     39
    3340!IF $(GSDL_VC4)
    34 CPPFLAGS = -GX
     41CXXFLAGS = $(CXXFLAGS) -GX
    3542!ELSE
    36 CPPFLAGS = -EHsc
     43CXXFLAGS = $(CXXFLAGS) -EHsc
    3744!ENDIF
    3845
     
    4148LIBS =
    4249
    43 COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     50COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    4451LINK = $(CC) -nologo $(LDFLAGS)
    4552
Note: See TracChangeset for help on using the changeset viewer.