mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
13 lines
345 B
Plaintext
13 lines
345 B
Plaintext
|
## 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
|