2.7.1
[platform/upstream/glib.git] / makefile.mingw
1 ## Makefile for building the GLib DLLs with gcc for mingw. The build
2 ## uses tools running on cygwin, however.
3
4 ## Use: make -f makefile.mingw
5
6 PARTS=glib gmodule gthread gobject tests
7
8 all :
9         for D in $(PARTS); do (cd $$D && $(MAKE) -f makefile.mingw all); done
10
11 clean :
12         for D in $(PARTS); do (cd $$D && $(MAKE) -f makefile.mingw clean); done