1
## Makefile for building the Gtk+ dlls with Microsoft C
2
## Use: nmake -f makefile.msc
3
4
PARTS = gdk-pixbuf gdk gtk tests
5
6
all : \
7
	config.h \
8
	sub-all
9
10
sub-all: 
11
	for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=all
12
13
clean : sub-clean
14
15
sub-clean:
16
	for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=clean
17
18
sub-one:
19
	@cd $(THIS)
20
	@nmake -nologo -f makefile.msc $(TARGET)
21
	@cd ..
22
23
config.h: config.h.win32
24
	copy config.h.win32 config.h