Changeset 11253 for trunk/gsdl/lib


Ignore:
Timestamp:
2006-02-15T13:14:51+13:00 (18 years ago)
Author:
mdewsnip
Message:

Added "-nologo" to all cc and lib calls (to prevent a two line message from Microsoft for each file), and added "-D_CRT_SECURE_NO_DEPRECATE" to prevent lots of warnings when compiling with Visual Studio 2005.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/lib/win32.mak

    r11054 r11253  
    4545
    4646DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN \
    47        -DSHORT_SUFFIX
     47       -DSHORT_SUFFIX -D_CRT_SECURE_NO_DEPRECATE
    4848INCLUDES = -I"$(GSDLHOME)" -I"$(GSDLHOME)\packages\mg\lib"
    4949!IF $(USE_STLPORT)
     
    5555!ENDIF
    5656
    57 COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     57COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
    5858
    5959.SUFFIXES:
     
    7979gsdllib.lib : $(OBJECTS)
    8080    if EXIST gsdllib.lib del gsdllib.lib
    81     $(AR) /out:gsdllib.lib $(OBJECTS)
     81    $(AR) -nologo /out:gsdllib.lib $(OBJECTS)
    8282
    8383# we want gsdltools to always be compiled in case the status of
Note: See TracChangeset for help on using the changeset viewer.