changeset 3208:a7968c41aea4

Add default compilers target for toplevel make.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Wed, 18 Apr 2007 21:06:08 +0200
parents edc13061f3c1
children 1f70c1ef3dad
files GNUmakefile
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/GNUmakefile	Wed Apr 18 20:56:10 2007 +0200
+++ b/GNUmakefile	Wed Apr 18 21:06:08 2007 +0200
@@ -1,5 +1,20 @@
 sources = GNUmakefile $(wildcard *.py specs/*.py lib/*.py)
 
+default: compilers
+
+PYTHON=python
+CWD:=$(shell pwd)
+INVOKE_GUB_BUILDER=$(PYTHON) gub-builder.py\
+ --target-platform $(1)\
+ $(foreach h,$(GUB_NATIVE_DISTCC_HOSTS), --native-distcc-host $(h))\
+ $(foreach h,$(GUB_CROSS_DISTCC_HOSTS), --cross-distcc-host $(h))\
+ $(LOCAL_GUB_BUILDER_OPTIONS)
+
+INVOKE_GUP=$(PYTHON) gup-manager.py\
+ --platform $(1)
+
+include compilers.make
+
 TAGS: $(sources)
 	etags $^
 
@@ -8,6 +23,10 @@
 
 help:
 	@echo Usage: make TAGS$(foreach a,$(MAKE_BASES),"|$a")
+	@echo
+	@echo For more elaborate use, see READMEs
 
 $(MAKE_BASES):
 	make -f $@.make
+
+download-local: