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

    r16583 r19524  
    2727MGPPHOME = ..
    2828
     29DEBUG = 0
     30
    2931AR = lib
    3032CC = cl
    31 CPPFLAGS =
     33
     34!IF $(DEBUG)
     35CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
     36!ELSE
     37CXXFLAGS =
     38!ENDIF
     39
    3240
    3341DEFS = -DQUIET -DHAVE_CONFIG_H -D__WIN32__ -DSHORT_SUFFIX -D_CRT_SECURE_NO_DEPRECATE
    3442INCLUDES = -I"." -I"$(MGPPHOME)"
    3543
    36 COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS)
     44COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CXXFLAGS)
    3745
    3846.SUFFIXES:
Note: See TracChangeset for help on using the changeset viewer.