Ryujinx-GtkSharp/makefile
Juli Mallett b18401fb0a 2002-08-24 Juli Mallett <jmallett@FreeBSD.org>
* makefile: Fix recursive invocation of make(1) to use
	the variable MAKE, to use the same utility that was
	responsible for the invocation of the initial build.

Reviewed by:	Rachel Hestilow

svn path=/trunk/gtk-sharp/; revision=7026
2002-08-25 06:14:46 +00:00

60 lines
1.2 KiB
Makefile

NATIVE_DIRS = glue parser
DIRS=generator api glib pango atk gdk gtk glade gnome sample
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe
MCS=mcs
all: linux
windows:
for i in $(DIRS); do \
CSC=$(CSC) $(MAKE) -C $$i windows || exit 1; \
done;
unix:
@echo "'make unix' is broken for now."
linux: native binding
binding:
for i in $(DIRS); do \
MCS="$(MCS)" $(MAKE) -C $$i || exit 1;\
done;
native:
for i in $(NATIVE_DIRS); do \
$(MAKE) -C $$i || exit 1; \
done
clean:
for i in $(NATIVE_DIRS) $(DIRS); do \
$(MAKE) -C $$i clean || exit 1; \
done;
distclean: clean
for i in $(NATIVE_DIRS); do \
$(MAKE) -C $$i distclean || exit 1; \
done
for i in $(DIRS); do \
rm -f $$i/Makefile; \
done
rm -f config.cache config.h config.log config.status libtool
maintainer-clean: distclean
rm -f aclocal.m4 config.guess config.h.in config.sub
rm -f configure install-sh ltmain.sh missing
rm -f mkinstalldirs stamp-h glue/Makefile.in
install: install-native install-binding
install-binding:
for i in $(DIRS); do \
$(MAKE) -C $$i install || exit 1; \
done
install-native:
for i in $(NATIVE_DIRS); do \
$(MAKE) -C $$i install || exit 1; \
done