mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
1a5e888b63
2002-11-21 Tor Lillqvist <tml@iki.fi> * {glib,gmodule,gobject,gthread}/makefile.{mingw,msc}.in: Hardcode 2.0 in the names, as that is what Makefile.am does.
23 lines
709 B
Plaintext
23 lines
709 B
Plaintext
## Makefile for building the gthread dll with Microsoft C
|
|
## Use: nmake -f makefile.msc install
|
|
|
|
TOP = ..\..
|
|
|
|
!INCLUDE ..\build\win32\make.msc
|
|
|
|
################################################################
|
|
|
|
INCLUDES = -FImsvc_recommended_pragmas.h -I .. -I . -I ..\glib
|
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GThread\"
|
|
all : \
|
|
libgthread-2.0-@LT_CURRENT_MINUS_AGE@.dll
|
|
|
|
gthread_OBJECTS = \
|
|
gthread-impl.obj
|
|
|
|
gthread-impl.obj : gthread-impl.c gthread-win32.c
|
|
$(CC) -c $(CFLAGS) gthread-impl.c
|
|
|
|
libgthread-2.0-@LT_CURRENT_MINUS_AGE@.dll : $(gthread_OBJECTS) gthread.def
|
|
$(CC) $(CFLAGS) -LD -Fe$@ $(gthread_OBJECTS) ..\glib\glib-2.0.lib $(DEPCLIBS) $(LDFLAGS) /implib:gthread-2.0.lib /def:gthread.def
|