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

    r16583 r19524  
    2727INSTALLDIR = ..\..\..\bin
    2828
     29DEBUG = 0
     30
    2931CC = cl
    30 CPPFLAGS =
     32
     33!IF $(DEBUG)
     34CFLAGS = -DEBUG -Z7 /errorReport:prompt
     35LDFLAGS = -DEBUG -Z7 /errorReport:prompt
     36!ELSE
     37CFLAGS =
     38LDFLAGS =
     39!ENDIF
     40
    3141DEFS = -DHAVE_CONFIG_H -D__WIN32__ -D_LITTLE_ENDIAN -D_CRT_SECURE_NO_DEPRECATE
    3242INCLUDES = -I"." -I"$(MGHOME)" -I"$(MGHOME)\lib"
    33 LDFLAGS =
    3443LIBS = $(MGHOME)\lib\libmglib.lib
    3544 
    36 COMPILE = $(CC) -c $(DEFS) $(INCLUDES)
     45COMPILE = $(CC) $(CFLAGS) -c $(DEFS) $(INCLUDES)
    3746LINK = $(CC) $(LDFLAGS)
    3847
     
    144153clean: mostlyclean
    145154    if exist *$e del *$e
    146  
     155    if exist *.pdb del *.pdb
     156
    147157distclean: clean
    148158    del ansi2knr
Note: See TracChangeset for help on using the changeset viewer.