1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20#************************************************************** 21 22 23 24# extend for JDK include (seems only needed in setsolar env?) 25SOLARINC += $(JDKINCS) 26 27OUTDIR := $(SOLARVERSION)/$(INPATH) 28WORKDIR := $(SOLARVERSION)/$(INPATH)/workdir 29 30# Override for SetupLocal 31ifneq ($(and $(gb_LOCALBUILDDIR),$(wildcard $(gb_LOCALBUILDDIR)/SetupLocal.mk)),) 32include $(gb_LOCALBUILDDIR)/SetupLocal.mk 33endif 34 35# env variables names are uppercase only 36ifeq ($(OS),OS2) 37gb_REPOS = $(GB_REPOS) 38endif 39 40ifeq ($(strip $(gb_REPOS)),) 41gb_REPOS := $(SOLARSRC) 42endif 43 44# HACK 45# unixify windows paths 46ifeq ($(OS),WNT) 47override WORKDIR := $(shell cygpath -u $(WORKDIR)) 48override OUTDIR := $(shell cygpath -u $(OUTDIR)) 49override gb_REPOS := $(foreach repo,$(gb_REPOS),$(shell cygpath -u $(repo))) 50endif 51 52REPODIR := $(patsubst %/,%,$(dir $(firstword $(gb_REPOS)))) 53 54ifeq ($(filter setuplocal removelocal,$(MAKECMDGOALS)),) 55ifneq ($(filter-out $(foreach repo,$(gb_REPOS),$(realpath $(repo))/%),$(realpath $(firstword $(MAKEFILE_LIST)))),) 56$(eval $(call gb_Output_error,The initial makefile $(realpath $(firstword $(MAKEFILE_LIST))) is not in the repositories $(foreach repo,$(gb_REPOS),$(realpath $(repo))).,ALL)) 57endif 58endif 59 60# vim: set noet sw=4 ts=4: 61