ohair@1244: # ohair@1369: # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. ohair@1244: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ohair@1244: # ohair@1244: # This code is free software; you can redistribute it and/or modify it ohair@1244: # under the terms of the GNU General Public License version 2 only, as ohair@1244: # published by the Free Software Foundation. Oracle designates this ohair@1244: # particular file as subject to the "Classpath" exception as provided ohair@1244: # by Oracle in the LICENSE file that accompanied this code. ohair@1244: # ohair@1244: # This code is distributed in the hope that it will be useful, but WITHOUT ohair@1244: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ohair@1244: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ohair@1244: # version 2 for more details (a copy is included in the LICENSE file that ohair@1244: # accompanied this code). ohair@1244: # ohair@1244: # You should have received a copy of the GNU General Public License version ohair@1244: # 2 along with this work; if not, write to the Free Software Foundation, ohair@1244: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ohair@1244: # ohair@1244: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@1244: # or visit www.oracle.com if you need additional information or have any ohair@1244: # questions. ohair@1244: # ohair@1244: ohair@1369: # Locate this Makefile ohair@1369: ifeq ($(filter /%,$(lastword $(MAKEFILE_LIST))),) ohair@1369: makefile_path:=$(CURDIR)/$(lastword $(MAKEFILE_LIST)) ohair@1369: else ohair@1369: makefile_path:=$(lastword $(MAKEFILE_LIST)) ohair@1369: endif ohair@1369: repo_dir:=$(patsubst %/makefiles/Makefile,%,$(makefile_path)) erikj@1273: ohair@1369: # What is the name of this subsystem (langtools, corba, etc)? ohair@1369: subsystem_name:=$(notdir $(repo_dir)) ohair@1244: ohair@1369: # Try to locate top-level makefile ohair@1369: top_level_makefile:=$(repo_dir)/../common/makefiles/Makefile ohair@1369: ifneq ($(wildcard $(top_level_makefile)),) ohair@1369: $(info Will run $(subsystem_name) target on top-level Makefile) ohair@1369: $(info WARNING: This is a non-recommended way of building!) ohair@1369: $(info ===================================================) ohair@1369: else ohair@1369: $(info Cannot locate top-level Makefile. Is this repo not checked out as part of a complete forest?) ohair@1369: $(error Build from top-level Makefile instead) ohair@1369: endif ohair@1244: ohair@1369: all: ohair@1369: @$(MAKE) -f $(top_level_makefile) $(subsystem_name)