garnacho / gtk-roles-and-siblings forked from aruiz/gtk-roles-and-siblings

Gtk+ branch with support for widget roles and sibling detection

This URL has Read+Write access

gtk-roles-and-siblings / makefile.msc
100644 25 lines (17 sloc) 0.487 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## Makefile for building the Gtk+ dlls with Microsoft C
## Use: nmake -f makefile.msc
 
PARTS = gdk-pixbuf gdk gtk 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