1
0
Files
2016-11-30 09:03:17 +08:00

29 lines
589 B
Plaintext
Executable File

## 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