summaryrefslogtreecommitdiff
path: root/tail_build
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2011-11-16 06:14:27 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2011-11-16 06:18:54 -0600
commit0ea8c014ef44695d0fd94f8738654e123e154cc0 (patch)
treecba63bc66aea56290c24569477ee87185d017077 /tail_build
parent9d76072055074cdd4bbd29ce6ba33c9499509fff (diff)
tweak gbuild standart Makefile to allow partial build in unsourced env
This allow to run make in a module wihtout the need to source Env.Host.sh.
Diffstat (limited to 'tail_build')
-rw-r--r--tail_build/Makefile15
1 files changed, 4 insertions, 11 deletions
diff --git a/tail_build/Makefile b/tail_build/Makefile
index ffea455a06c1..92241b5c70f4 100644
--- a/tail_build/Makefile
+++ b/tail_build/Makefile
@@ -27,19 +27,12 @@
# if no environment is set, try to find one, source it and re-exec
ifeq ($(strip $(SOLARENV)),)
+include ./solenv/gbuild/source_and_rerun.mk
+else
-all:
- if test -f ./Env.Host.sh; then . ./Env.Host.sh; fi && \
- if test -z "$${SOLARENV}"; then echo "No environment set!"; exit 1; fi && \
- $(MAKE)
-
-else # SOLARENV
-
-GBUILDDIR := $(SOLARENV)/gbuild
-include $(GBUILDDIR)/gbuild.mk
+include $(SOLARENV)/gbuild/gbuild.mk
$(eval $(call gb_Module_make_global_targets,$(SRC_ROOT)/Module_tail_build.mk))
-endif # SOLARENV
-
+endif
# vim: set noet sw=4 ts=4: