usr/src/uts/intel/ibd/Makefile
author Venkatakrishnan Rajagopalan <Venkatakrishnan.Rajagopalan@Sun.COM>
Mon, 29 Jun 2009 02:56:22 -0700
changeset 9985 f0a94a205b15
parent 5766 5bbd09315100
child 11534 9e690526d933
permissions -rw-r--r--
6845344 IBD driver should attach if PKEY is Valid with fullmembership bit set
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     1
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     2
# CDDL HEADER START
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     3
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
3066
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
     5
# Common Development and Distribution License (the "License").
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
     6
# You may not use this file except in compliance with the License.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     7
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    10
# See the License for the specific language governing permissions
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    11
# and limitations under the License.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    12
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    18
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    19
# CDDL HEADER END
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    20
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    21
#
9985
f0a94a205b15 6845344 IBD driver should attach if PKEY is Valid with fullmembership bit set
Venkatakrishnan Rajagopalan <Venkatakrishnan.Rajagopalan@Sun.COM>
parents: 5766
diff changeset
    22
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    23
# Use is subject to license terms.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    24
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    25
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    26
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    27
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    28
#	Path to the base of the uts directory tree (usually /usr/src/uts).
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    29
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    30
UTSBASE	= ../..
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    31
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    32
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    33
#	Define the module and object file sets.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    34
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    35
MODULE		= ibd
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    36
OBJECTS		= $(IBD_OBJS:%=$(OBJS_DIR)/%)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    37
LINTS		= $(IBD_OBJS:%.o=$(LINTS_DIR)/%.ln)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    38
ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
5766
5bbd09315100 PSARC 2007/636 IPoIB Conversion to GLDv3
gg161487
parents: 4604
diff changeset
    39
LDFLAGS		+= -dy -Nmisc/mac -Nmisc/ibtl -Nmisc/ibcm -Nmisc/ibmf
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    40
WARLOCK_OUT	= $(IBD_OBJS:%.o=%.ll)
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    41
WARLOCK_OK	= $(MODULE).ok
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    42
WLCMD_DIR	= $(UTSBASE)/common/io/warlock
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    43
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    44
#	Include common rules.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    45
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    46
include $(UTSBASE)/intel/Makefile.intel
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    47
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    48
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    49
#	Define targets
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    50
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    51
ALL_TARGET	= $(BINARY)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    52
LINT_TARGET	= $(MODULE).lint
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    53
INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    54
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    55
#
3066
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    56
# For now, disable these lint checks; maintainers should endeavor
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    57
# to investigate and remove these for maximum lint coverage.
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    58
# Please do not carry these forward to new Makefiles.
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    59
#
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    60
LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    61
LINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    62
2a2af34f0642 6470037 remove global disable of some potentially useful lint warnings from the kernel lint build
jg
parents: 0
diff changeset
    63
#
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    64
#	Default build targets.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    65
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    66
.KEEP_STATE:
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    67
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    68
def:		$(DEF_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    69
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    70
all:		$(ALL_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    71
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    72
clean:		$(CLEAN_DEPS)
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    73
		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    74
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    75
clobber:	$(CLOBBER_DEPS)
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    76
		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    77
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    78
lint:		$(LINT_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    79
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    80
modlintlib:	$(MODLINTLIB_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    81
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    82
clean.lint:	$(CLEAN_LINT_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    83
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    84
install:	$(INSTALL_DEPS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    85
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    86
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    87
#	Include common targets.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    88
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    89
include $(UTSBASE)/intel/Makefile.targ
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    90
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    91
#
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    92
#       Defines for local commands.
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    93
#
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    94
WARLOCK         = warlock
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    95
WLCC            = wlcc
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    96
TOUCH           = touch
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    97
TEST            = test
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    98
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
    99
warlock: $(WARLOCK_OK)
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   100
4604
5989fb2cb1d5 6540978 libsldap EXPORT_WS target must die
stevel
parents: 3138
diff changeset
   101
$(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/ibd.wlcmd warlock_ddi.files
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   102
	$(WARLOCK) -c $(WLCMD_DIR)/ibd.wlcmd $(WARLOCK_OUT) \
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   103
		-l ../warlock/ddi_dki_impl.ll
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   104
	$(TOUCH) $@
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   105
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   106
%.ll: $(UTSBASE)/common/io/ib/clients/ibd/%.c \
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   107
	$(UTSBASE)/common/sys/ib/clients/ibd/ibd.h
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   108
	$(WLCC)  $(CPPFLAGS) -DDEBUG -o $@ $<
4604
5989fb2cb1d5 6540978 libsldap EXPORT_WS target must die
stevel
parents: 3138
diff changeset
   109
3138
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   110
warlock_ddi.files:
7bbdcbfa4cd5 6491439 warlock support on x86
frits
parents: 3066
diff changeset
   111
	@cd ../warlock; pwd; $(MAKE) warlock