summaryrefslogtreecommitdiff
path: root/solenv/gbuild/source_and_rerun.mk
blob: 0de1a9ddf35f399daf2a29c462b39e58de8b7d18 (plain)
1
2
3
4
5
6
7
8
9
10
11

dummy:
	@if test -f ./config.mk; then . ./config.mk; else if test -f ../config.mk ; then . ../config.mk; fi; fi && \
	if test -f ./Env.Host.sh; then . ./Env.Host.sh; else if test -f ../Env.Host.sh; then . ../Env.Host.sh; fi ; fi && \
	if test -z "$${SOLARENV}"; then echo "No environment set!" 2>&1; exit 1; fi && \
	$(MAKE) $(MAKECMDGOALS)

ifneq ($(strip $(MAKECMDGOALS)),)
$(eval $(MAKECMDGOALS) : dummy)
endif