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