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

    r16583 r19524  
    2929AR = lib
    3030CC = cl
    31 CPPFLAGS =
     31DEBUG = 0
     32CXXFLAGS =
     33
     34!IF $(DEBUG)
     35CFLAGS = -DEBUG -Z7 /errorReport:prompt
     36LDFLAGS = -DEBUG -Z7 /errorReport:prompt
     37!ELSE
     38CFLAGS =
     39LDFLAGS =
     40!ENDIF
    3241
    3342DEFS = -DQUIET -DHAVE_CONFIG_H -D__WIN32__ -D_LITTLE_ENDIAN -DPARADOCNUM \
     
    3645           -I"$(JAVA_HOME)\include" -I"$(JAVA_HOME)\include\win32"           
    3746
    38 COMPILE = $(CC) -c $(DEFS) $(INCLUDES)
     47COMPILE = $(CC) $(CFLAGS) -c $(DEFS) $(INCLUDES)
    3948 
    4049.SUFFIXES:
Note: See TracChangeset for help on using the changeset viewer.