mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-13 04:46:15 +01:00
847d8e9212
2001-07-20 Hans Breuer <hans@breuer.org> * glib/glib/giowin32.c : make it compile again * glib/glib.def : updated exports * glib/makefile.msc.in : * glib/makefile.mingw.in : * tests/makefile.msc.in : reflect glib move * tests/mainloop-test.c : #include <io.h> for _pipe() * tests/gio-test.c : casts for strict compiler settings * makefile.msc.in : new master makefile reflecting the glib move. The '.in' isn't really needed anymore, because there is no version number in it
27 lines
481 B
Plaintext
27 lines
481 B
Plaintext
## Makefile for building the GLib dlls with Microsoft C
|
|
## Use: nmake -f makefile.msc
|
|
|
|
TOP = ..
|
|
|
|
!INCLUDE $(TOP)\build\win32\make.msc
|
|
|
|
PARTS = glib gmodule gthread gobject tests
|
|
|
|
all : \
|
|
config.h \
|
|
sub-all
|
|
|
|
sub-all:
|
|
for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d
|
|
|
|
sub-one:
|
|
@cd $(THIS)
|
|
@nmake -nologo -f makefile.msc
|
|
@cd ..
|
|
|
|
config.h: config.h.win32
|
|
copy config.h.win32 config.h
|
|
|
|
glibconfig.h: glibconfig.h.win32
|
|
copy glibconfig.h.win32 glibconfig.h
|