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

    r10435 r11253  
    2323o = .obj
    2424
    25 DEFS=-DHAVE_CONFIG_H -D__WIN32__
     25DEFS=-DHAVE_CONFIG_H -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
    2626INCLUDES= -I"$(GSDLHOME)"
    27 COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     27COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
    2828
    2929LIB_OBJS = MARC2709$o MARCtidy$o usMARC$o util$o strcasecmp$o
     
    3333libd2m.lib: $(LIB_OBJS)
    3434    if EXIST libd2m.lib del libd2m.lib
    35     $(AR) /out:libd2m.lib $(LIB_OBJS)
     35    $(AR) -nologo /out:libd2m.lib $(LIB_OBJS)
    3636
    3737install:
Note: See TracChangeset for help on using the changeset viewer.