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 35ifeq ($(strip $(gb_REPOS)),) 36gb_REPOS := $(SOLARSRC) 37endif 38 39# HACK 40# unixify windoze paths 41ifeq ($(OS),WNT) 42override WORKDIR := $(shell cygpath -u $(WORKDIR)) 43override OUTDIR := $(shell cygpath -u $(OUTDIR)) 44override gb_REPOS := $(shell cygpath -u $(gb_REPOS)) 45endif 46 47REPODIR := $(patsubst %/,%,$(dir $(firstword $(gb_REPOS)))) 48 49ifeq ($(filter setuplocal removelocal,$(MAKECMDGOALS)),) 50ifneq ($(filter-out $(foreach repo,$(gb_REPOS),$(realpath $(repo))/%),$(realpath $(firstword $(MAKEFILE_LIST)))),) 51$(eval $(call gb_Output_error,The initial makefile $(realpath $(firstword $(MAKEFILE_LIST))) is not in the repositories $(foreach repo,$(gb_REPOS),$(realpath $(repo))).,ALL)) 52endif 53endif 54 55# vim: set noet sw=4 ts=4: 56