1 ## Makefile for building the GLib DLL with gcc for mingw. The build
2 ## uses tools running on cygwin, however.
4 ## Use: make -f makefile.mingw
6 # Change this to wherever you want to install the DLLs. This directory
7 # should be in your PATH.
12 include build/win32/make.mingw
14 # Possibly override GLib version in build/win32/module.defs
15 GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
17 ################################################################
19 # Nothing much configurable below
22 DEFINES = -DHAVE_CONFIG_H -DGLIB_COMPILATION -DG_LOG_DOMAIN=g_log_domain_glib
23 DEPCFLAGS = $(LIBICONV_CFLAGS)
26 glib-$(GLIB_VER).dll \
35 gspawn-win32-helper.exe \
41 $(INSTALL) $(DLLS_TO_BUILD) $(BIN)
86 glibconfig.h: glibconfig.h.win32
89 config.h: config.h.win32
92 makefile.mingw: makefile.mingw.in
93 sed -e 's,@GLIB[_]MAJOR_VERSION@,@GLIB_MAJOR_VERSION@,' \
94 -e 's,@GLIB[_]MINOR_VERSION@,@GLIB_MINOR_VERSION@,' <$< >$@
98 glib-$(GLIB_VER).dll : $(glib_OBJECTS) glib.def
99 ./build-dll glib $(GLIB_VER) glib.def $(glib_OBJECTS) $(LIBICONV_LIBS) -luser32 -lwsock32
101 gspawn-win32-helper.exe : gspawn-win32-helper.c
102 $(CC) $(CFLAGS) -mwindows -DG_LOG_DOMAIN=\"gspawn-win32-helper\" -o $@ $< -L . -lglib-$(GLIB_VER)
104 ################ subdirectories
107 cd gmodule && $(MAKE) -f makefile.mingw all
110 cd gthread && $(MAKE) -f makefile.mingw all
113 cd gobject && $(MAKE) -f makefile.mingw all
115 ################ test progs
117 testglib.o : testglib.c
118 $(CC) -c $(CFLAGS) -DG_LOG_DOMAIN=\"testglib\" $<
120 testglib.exe : glib-$(GLIB_VER).dll testglib.o
121 $(CC) $(CFLAGS) -o testglib testglib.o -L . -lglib-$(GLIB_VER) $(LDFLAGS)
123 testgdate.o : testgdate.c
124 $(CC) -c $(CFLAGS) -DG_LOG_DOMAIN=\"testgdate\" $<
126 testgdate.exe : glib-$(GLIB_VER).dll testgdate.o
127 $(CC) $(CFLAGS) -o testgdate.exe testgdate.o -L . -lglib-$(GLIB_VER) $(LDFLAGS)
129 testgdateparser.o : testgdateparser.c
130 $(CC) -c $(CFLAGS) -DG_LOG_DOMAIN=\"testgdateparser\" $<
132 testgdateparser.exe : glib-$(GLIB_VER).dll testgdateparser.o
133 $(CC) $(CFLAGS) -o testgdateparser.exe testgdateparser.o -L . -lglib-$(GLIB_VER) $(LDFLAGS)
136 ################ other stuff
139 -rm config.h glibconfig.h gmodule/gmoduleconf.h