summaryrefslogtreecommitdiffstats
path: root/tail_build/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tail_build/Makefile')
-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: