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

    r16583 r19524  
    2929INSTALLDIR = ..\..\..\bin
    3030
     31DEBUG = 0
     32
    3133AR = lib
    32 
    3334CC = cl
    34 CPPFLAGS =
     35
     36!IF $(DEBUG)
     37CFLAGS = -DEBUG -Z7 /errorReport:prompt
     38LDFLAGS = -DEBUG -Z7 /errorReport:prompt
     39!ELSE
     40CFLAGS =
     41LDFLAGS =
     42!ENDIF
     43
     44
    3545DEFS = -DNZDL -DQUIET -DSHORT_SUFFIX -DPARADOCNUM -DHAVE_CONFIG_H \
    3646       -D__WIN32__ -D_LITTLE_ENDIAN -D_CRT_SECURE_NO_DEPRECATE
    3747INCLUDES = -I"." -I"$(MGHOME)" -I"$(MGHOME)\lib"
    38 COMPILE = $(CC) $(CPPFLAGS) -c $(DEFS) $(INCLUDES)
    39 
    40 LDFLAGS =
     48COMPILE = $(CC) $(CFLAGS) -c $(DEFS) $(INCLUDES)
     49
    4150LINK = $(CC) $(LDFLAGS)
    4251
     
    241250        if exist libmgtext.lib del libmgtext.lib
    242251        if exist libmgpass.lib del libmgpass.lib
     252    if exist *.pdb del *.pdb
Note: See TracChangeset for help on using the changeset viewer.