## 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 ################################################################ # Nothing much configurable below INCLUDES = -I .. -I ../glib -I . DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GThread\" -DG_ENABLE_DEBUG all : \ gthread-@GLIB_VERSION@.dll ifeq ($(wildcard makefile.mingw.in),makefile.mingw.in) makefile.mingw: makefile.mingw.in sed -e 's,@GLIB[_]VERSION@,@GLIB_VERSION@,' <$< >$@ endif gthread_OBJECTS = \ gthread-impl.o gthread-@GLIB_VERSION@.dll : $(gthread_OBJECTS) gthread.def $(BUILD_DLL) gthread @GLIB_VERSION@ gthread.def $(gthread_OBJECTS) -L ../glib -lglib