mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-07 18:06:15 +01:00
b877c83cdc
2007-12-09 Hans Breuer <hans@breuer.org> * **/makefile.msc glib/makefile.msc.in : removed -GD to compile with msvc9 (vs2008) with less complains * glibconfig.h.win32.in : #define G_HAVE_ISO_VARARGS 1 for msv8 (vs2005) and above * glib/gfileutils.c : s/stricmp/_stricmp/ * msvc_recommended_pragmas.h : work around Microsoft's premature attempt to deprecate the C-Library * tests/makefile.msc.in : added checksum-test svn path=/trunk/; revision=6076
19 lines
303 B
Plaintext
19 lines
303 B
Plaintext
TOP = ..\..\..
|
|
!INCLUDE ..\..\build\win32\make.msc
|
|
|
|
INCLUDES = -I ..\.. -I ..
|
|
DEFINES = -DHAVE_CONFIG_H -DHAVE_LONG_LONG_FORMAT
|
|
|
|
OBJECTS = \
|
|
asnprintf.obj \
|
|
printf.obj \
|
|
printf-args.obj \
|
|
printf-parse.obj \
|
|
vasnprintf.obj
|
|
|
|
all : gnulib.lib
|
|
|
|
gnulib.lib : $(OBJECTS)
|
|
lib -out:gnulib.lib $(OBJECTS)
|
|
|