2008-07-06 Matthias Clasen <mclasen@redhat.com>
[gtk-with-powerbox.git] / makefile.msc
blobf95e5d33e41d3347e71a946c423d26322afc10bf
1 ## Makefile for building the Gtk+ dlls with Microsoft C
2 ## Use: nmake -f makefile.msc
4 PARTS = gdk-pixbuf gdk gtk tests
6 all : \
7         config.h \
8         sub-all
10 sub-all: 
11         for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=all
13 clean : sub-clean
15 sub-clean:
16         for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=clean
18 sub-one:
19         @cd $(THIS)
20         @nmake -nologo -f makefile.msc $(TARGET)
21         @cd ..
23 config.h: config.h.win32
24         copy config.h.win32 config.h