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/src/mgpp/lib/WIN32.MAK

    r7060 r11253  
    4242!ENDIF
    4343
    44 DEFS = -DSHORT_SUFFIX -DSILENT -DHAVE_CONFIG_H -D__WIN32__
     44DEFS = -DSHORT_SUFFIX -DSILENT -DHAVE_CONFIG_H -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
    4545INCLUDES = -I"$(GSDLHOME)"
    4646!IF $(USE_STLPORT)
     
    5353LIBS =
    5454
    55 COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     55COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
    5656LINK = $(CC) $(LDFLAGS)
    5757
     
    100100libmg.lib: $(OBJECTS)
    101101    if EXIST libmg.lib del libmg.lib
    102     lib /out:libmg.lib $(OBJECTS)
     102    lib -nologo /out:libmg.lib $(OBJECTS)
    103103
    104104clean:
Note: See TracChangeset for help on using the changeset viewer.