mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
3729dc28ad
2001-10-26 Tor Lillqvist <tml@iki.fi> * glib/glib.def: Update. * tests/makefile.{mingw,msc}.in: Add ../* to PATH before running tests to find DLLs. Separate the interactive tests, don't run them in the check target. * */makefile.msc.in: Include make.msc from GLib's build directory.
25 lines
885 B
Plaintext
25 lines
885 B
Plaintext
## Makefile for building the gthread dll with Microsoft C
|
|
## Use: nmake -f makefile.msc install
|
|
|
|
GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
|
|
|
|
TOP = ..\..
|
|
|
|
!INCLUDE ..\build\win32\make.msc
|
|
|
|
################################################################
|
|
|
|
INCLUDES = -I .. -I . -I ..\glib
|
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GThread\"
|
|
all : \
|
|
libgthread-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@-@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-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@.dll : $(gthread_OBJECTS) gthread.def
|
|
$(CC) $(CFLAGS) -LD -Fe$@ $(gthread_OBJECTS) ..\glib\glib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@.lib $(DEPCLIBS) $(LDFLAGS) /implib:gthread-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@.lib /def:gthread.def
|