1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26
27#	This makefile drives the production of the i2bsc nexus driver.
28#
29#	Path to the base of the uts directory tree (usually /usr/src/uts).
30
31UTSBASE = ../..
32
33#
34#	Define the module and object file sets.
35#
36MODULE		= i2bsc
37OBJECTS		= $(I2BSC_OBJS:%=$(OBJS_DIR)/%)
38LINTS		= $(I2BSC_OBJS:%.o=$(LINTS_DIR)/%.ln)
39ROOTMODULE	= $(ROOT_PSM_DRV_DIR)/$(MODULE)
40CONF_SRCDIR	= $(UTSBASE)/sun4u/io/i2c/nexus
41
42#
43#	Include common rules.
44#
45include $(UTSBASE)/sun4u/Makefile.sun4u
46
47# 
48# lint pass one enforcement 
49# 
50CFLAGS += $(CCVERBOSE) -I$(UTSBASE)/sun4u
51
52LDFLAGS += -dy -N misc/i2c_svc
53
54#
55#	Define targets
56#
57ALL_TARGET	= $(BINARY)
58LINT_TARGET	= $(MODULE).lint
59INSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
60
61#
62# For now, disable these lint checks; maintainers should endeavor
63# to investigate and remove these for maximum lint coverage.
64# Please do not carry these forward to new Makefiles.
65#
66LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
67LINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
68LINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
69
70.KEEP_STATE:
71
72def:		$(DEF_DEPS)
73
74all:		$(ALL_DEPS)
75
76clean:		$(CLEAN_DEPS)
77
78clobber:	$(CLOBBER_DEPS)
79
80lint:		$(LINT_DEPS)
81
82modlintlib:	$(MODLINTLIB_DEPS)
83
84clean.lint:	$(CLEAN_LINT_DEPS)
85
86install:	$(INSTALL_DEPS)
87
88#
89#	Defines for local commands.
90#
91WLCC		= wlcc
92TOUCH		= touch
93WARLOCK		= warlock
94
95#
96#	Warlock targets
97#
98
99I2BSC = $(I2BSC_OBJS:%.o=%.ll)
100
101warlock: $(MODULE).ok 
102
103%.ok:	$(I2BSC_FILES)
104	$(TOUCH) $@
105
106%.ll: $(UTSBASE)/sun4u/io/i2c/nexus/i2bsc/%.c
107	$(WLCC) $(CFLAGS) $(CPPFLAGS) -DDEBUG -o $@ $<
108
109#
110#	Include common targets
111#
112include $(UTSBASE)/sun4u/Makefile.targ
113