mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
07741c07d8
2001-09-04 Tor Lillqvist <tml@iki.fi> * README.win32: Update. Don't mention pthreads. * build-dll: Remove, moved to the build module. * glibconfig.h.win32.in: Don't mention pthreds here, either. * glib/gstrfuncs.c: Mark the correct variable for export from DLL. * glib/giowin32.c (g_io_win32_msg_create_watch): Owen forgot to rename the win32_watch_funcs variable here, too. * */makefile.mingw.in: Don't use version number in import library name. Use whole version number in DLL name. Use build-dll from the build module.
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
## Makefile for building the gmodule DLL with gcc for mingw. The build
|
|
## uses tools running on cygwin, however.
|
|
|
|
## Use: make -f makefile.mingw
|
|
|
|
TOP = ../..
|
|
|
|
include ../build/win32/make.mingw
|
|
|
|
################################################################
|
|
|
|
# Nothing much configurable below
|
|
|
|
INCLUDES = -I .. -I ../glib -I .
|
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GModule\" -DG_ENABLE_DEBUG
|
|
|
|
all : \
|
|
gmoduleconf.h \
|
|
gmodule-@GLIB_VERSION@.dll \
|
|
testgmodule.exe \
|
|
libgplugin_a.dll libgplugin_b.dll
|
|
|
|
ifeq ($(wildcard makefile.mingw.in),makefile.mingw.in)
|
|
makefile.mingw: makefile.mingw.in
|
|
sed -e 's,@GLIB[_]VERSION@,@GLIB_VERSION@,' <$< >$@
|
|
endif
|
|
|
|
gmodule_OBJECTS = \
|
|
gmodule.o
|
|
|
|
gmoduleconf.h: gmoduleconf.h.win32
|
|
cp $< $@
|
|
|
|
################ The gmodule DLL
|
|
|
|
gmodule-@GLIB_VERSION@.dll : $(gmodule_OBJECTS) gmodule.def
|
|
$(BUILD_DLL) gmodule @GLIB_VERSION@ $(CFLAGS) gmodule.def $(gmodule_OBJECTS) -L ../glib -lglib
|
|
|
|
################ test prog
|
|
|
|
testgmodule.exe : gmodule-@GLIB_VERSION@.dll testgmodule.o
|
|
# We have to generate an .exp file separately with dlltool, and link
|
|
# with that. Sigh.
|
|
dlltool --output-exp testgmodule.exp testgmodule.o
|
|
$(CC) $(CFLAGS) -o testgmodule.exe testgmodule.o testgmodule.exp -L ../glib -lglib -L . -lgmodule $(LFLAGS)
|
|
|
|
libgplugin_a.dll : libgplugin_a.o
|
|
$(BUILD_DLL) libgplugin_a - libgplugin_a.o -L ../glib -lglib -L . -lgmodule
|
|
|
|
libgplugin_b.dll : libgplugin_b.o
|
|
$(BUILD_DLL) libgplugin_b - libgplugin_b.o -L ../glib -lglib -L . -lgmodule
|
|
|
|
################ Other stuff
|
|
|
|
clean::
|
|
-rm gmoduleconf.h
|