5c87903756
* makefile: when doing distclean, attempt distclean on all the C# subdirs too * gconf/Makefile.in: added distclean target to rm the Makefiles in the subdirs of gconf/ * glue/Makefile.am: build libgtksharpglue as an unversioned module to avoid so -> so.0 -> so.0.0 symlink mess * */Makefile.in: call mkinstalldirs before installing any files so that subdirs can be installed seperately or in any sequence (eg binding dirs before native dirs) svn path=/trunk/gtk-sharp/; revision=9828
24 lines
411 B
Makefile
24 lines
411 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
|
|
|
|
distclean: clean
|
|
for i in $(SUBDIRS); do \
|
|
rm -f $$i/Makefile; \
|
|
done
|