mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
27cb515443
2007-12-03 Hans Breuer <hans@breuer.org> * glib/glib.symbols : added glib_gettext (in use by gio) * makefile.msc : also try building gio * glib/gmarkup.c : use G_GUINT64_CONSTANT() to avoid 'bad suffix on number' * glib/gtestutils.c : declare cariable at the beginning of the block, include <io.h> for G_OS_WIN32 * makefile.msc.in : add gurifuncs and gtestutils svn path=/trunk/; revision=6028
29 lines
589 B
Plaintext
29 lines
589 B
Plaintext
## Makefile for building the GLib dlls with Microsoft C
|
|
## Use: nmake -f makefile.msc
|
|
|
|
PARTS = glib gmodule gthread gobject gio tests
|
|
|
|
all : \
|
|
config.h \
|
|
glibconfig.h \
|
|
sub-all
|
|
|
|
sub-all:
|
|
for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=all
|
|
|
|
clean : sub-clean
|
|
|
|
sub-clean:
|
|
for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=clean
|
|
|
|
sub-one:
|
|
@cd $(THIS)
|
|
@nmake -nologo -f makefile.msc $(TARGET)
|
|
@cd ..
|
|
|
|
config.h: config.h.win32
|
|
copy config.h.win32 config.h
|
|
|
|
glibconfig.h: glibconfig.h.win32
|
|
copy glibconfig.h.win32 glibconfig.h
|