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