glib/makefile.msc
Hans Breuer 1a19e05df5 win32: Updated msvc build files
Now it's possible again to build on the command line again.
Lowest tested compiler version is msvc6 (aka _MSC_VER 1200)
2012-07-06 18:11:46 +02:00

25 lines
501 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 \
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