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.
26 lines
647 B
Plaintext
26 lines
647 B
Plaintext
## Makefile for building the gthread DLL with gcc for mingw. The build
|
|
## uses tools running on cygwin, however.
|
|
|
|
## Use: make -f makefile.mingw
|
|
|
|
TOP = ../..
|
|
|
|
include ../build/win32/make.mingw
|
|
|
|
################################################################
|
|
|
|
INCLUDES = -I .. -I ../glib -I .
|
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GThread\" -DG_ENABLE_DEBUG
|
|
|
|
all : \
|
|
libgthread-2.0.a
|
|
|
|
gthread_OBJECTS = \
|
|
gthread-impl.o
|
|
|
|
libgthread-2.0.a : $(gthread_OBJECTS) gthread.def gthread-2.0.rc
|
|
$(BUILD_DLL) gthread-2.0 @LT_CURRENT@:@LT_REVISION@:@LT_AGE@ gthread.def $(gthread_OBJECTS) -L ../glib -lglib-2.0
|
|
|
|
gthread-2.0.rc : gthread.rc
|
|
cp $< $@
|