Ignore:
Timestamp:
2009-05-19T17:00:42+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
  • other-projects/trunk/search4j/win32.mak

    r17500 r19526  
    2727CC = cl
    2828LINKER = link
    29 CPPFLAGS =
     29
     30DEBUG = 0
     31GSDL_VC4 = 0
     32
     33!IF $(DEBUG)
     34CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     35!ELSE
     36CXXFLAGS =
     37!ENDIF
     38
     39!IF $(GSDL_VC4)
     40CXXFLAGS = $(CXXFLAGS) -GX
     41!ELSE
     42CXXFLAGS = $(CXXFLAGS) -EHsc
     43!ENDIF
     44
    3045DEFS = -D_CRT_SECURE_NO_DEPRECATE
    3146INCLUDES =
    3247LIBS = advapi32.lib
    3348
    34 COMPILE = $(CC) -c -GX /DWINDOWS=yes $(CPPFLAGS) $(DEFS) $(INCLUDES)
     49COMPILE = $(CC) -c /DWINDOWS=yes $(CXXFLAGS) $(DEFS) $(INCLUDES)
    3550LINK = $(LINKER) /OUT:$@ $(LDFLAGS)
    3651
Note: See TracChangeset for help on using the changeset viewer.