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