Makefile revision 1368
98N/A#
98N/A# CDDL HEADER START
98N/A#
98N/A# The contents of this file are subject to the terms of the
98N/A# Common Development and Distribution License (the "License").
98N/A# You may not use this file except in compliance with the License.
98N/A#
98N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
98N/A# or http://www.opensolaris.org/os/licensing.
98N/A# See the License for the specific language governing permissions
98N/A# and limitations under the License.
98N/A#
98N/A# When distributing Covered Code, include this CDDL HEADER in each
98N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
98N/A# If applicable, add the following below this CDDL HEADER, with the
98N/A# fields enclosed by brackets "[]" replaced with your own identifying
98N/A# information: Portions Copyright [yyyy] [name of copyright owner]
98N/A#
98N/A# CDDL HEADER END
98N/A#
98N/A# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
98N/A#
98N/Ainclude ../../make-rules/shared-macros.mk
98N/Ainclude ../../make-rules/ips.mk
98N/Ainclude ofed.mk
98N/A
98N/ALD_Z_IGNORE =
98N/A
98N/ACOMPONENT_NAME= open-fabrics
98N/ACOMPONENT_VERSION=1.5.3
98N/A
98N/ACOMPONENT_PROJECT_URL= http://www.openfabrics.org/
111N/ACOMPONENT_BUGDB= library/ofuv_lib utility/ofuv_tools
98N/A
98N/A# for now, everything with a Makefile should be built
98N/ASUBDIRS = $(shell echo */Makefile | sed -e 's;/Makefile;;g')
98N/A
98N/A.PHONY: $(SUBDIRS)
98N/A
98N/Adownload: TARGET = download
98N/Aprep: TARGET = prep
98N/Ainstall: TARGET = install
98N/Aclean: TARGET = clean
98N/Aclobber: TARGET = clobber
98N/Atest: TARGET = test
98N/A
98N/Abuild: install
98N/A
98N/A.DEFAULT: publish
98N/A
98N/Adownload prep install test: $(SUBDIRS)
98N/A
98N/Aclean: $(SUBDIRS)
98N/A $(RM) -r prototype build
98N/A
98N/Aclobber: $(SUBDIRS) clean
98N/A
101N/A$(SUBDIRS): FORCE
98N/A @cd $@ && echo "$(TARGET) $@" && $(MAKE) $(TARGET)
98N/A
98N/A# declare module dependencies
98N/Alibrdmacm: libibverbs
98N/Alibmlx4: libibverbs
98N/Ards-tools: libibverbs
98N/Aperftest: libibverbs librdmacm libibverbs
98N/Aqperf: libibverbs librdmacm
98N/Alibibumad: libibverbs
98N/Alibibmad: libibumad
98N/Aopensm: libibumad libibmad
98N/Aibutils: opensm
98N/Ainfiniband-diags: libibverbs opensm
98N/A
98N/AFORCE:
98N/A