Ryujinx-GtkSharp/gconf/Makefile.in
Rachel Hestilow d33dd8a15f 2002-10-19 Rachel Hestilow <hestilow@ximian.com>
* 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
2002-10-19 09:31:20 +00:00

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