mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:15:38 +00:00
d33dd8a15f
* gconf, sample/gconf: Added. * glue/combo.c: This was never added, add it now. * configure.in, makefile, sample/Makefile.in: Build new gconf bindings if gnome is enabled. svn path=/trunk/gtk-sharp/; revision=8389
20 lines
327 B
Makefile
20 lines
327 B
Makefile
SUBDIRS = GConf GConf.PropertyEditors tools
|
|
|
|
@ENABLE_GNOME_TRUE@ all: linux
|
|
@ENABLE_GNOME_FALSE@ all:
|
|
|
|
linux:
|
|
for i in $(SUBDIRS); do \
|
|
make -C $$i || exit 1; \
|
|
done
|
|
|
|
install: all
|
|
for i in $(SUBDIRS); do \
|
|
make -C $$i install || exit 1; \
|
|
done
|
|
|
|
clean:
|
|
for i in $(SUBDIRS); do \
|
|
make -C $$i clean || exit 1; \
|
|
done
|