xref: /titanic_41/usr/src/uts/sun4v/ontario/Makefile (revision fd06a699040f011e80ab8ac5213bb0a47858e69b)
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# uts/sun4v/ontario/Makefile
23# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28#	This makefile drives the production of the sun4v ontario platform
29#	modules.
30#
31#	sun4v ontario implementation architecture dependent
32#
33
34#
35#	Path to the base of the uts directory tree (usually /usr/src/uts).
36#
37UTSBASE	= ../..
38
39#
40#	Include common rules.
41#
42include $(UTSBASE)/sun4v/ontario/Makefile.ontario
43
44def		:=	TARGET= def
45all		:=	TARGET= all
46install		:=	TARGET= install
47install_h	:=	TARGET= install_h
48clean		:=	TARGET= clean
49clobber		:=	TARGET= clobber
50lint		:=	TARGET= lint
51lintlib		:=	TARGET= lintlib
52modlintlib	:=	TARGET= modlintlib
53modlist		:=	TARGET= modlist
54modlist		:=	NO_STATE= -K $$MODSTATE$$$$
55clean.lint	:=	TARGET= clean.lint
56check		:=	TARGET= check
57
58#
59#	Default build targets.
60#
61.KEEP_STATE:
62
63def all clean clobber clean.lint modlist:	$(ONTARIO_KMODS)
64
65lintlib:      unix
66
67modlintlib:   $(ONTARIO_KMODS)
68
69IMPLEMENTED_PLATFORM	= SUNW,Sun-Fire-T200
70LINKED_PLATFORMS	= SUNW,Sun-Fire-T1000
71LINKED_PLATFORMS	+= SUNW,SPARC-Enterprise-T1000
72LINKED_PLATFORMS	+= SUNW,Netra-T2000
73LINKED_PLATFORMS	+= SUNW,SPARC-Enterprise-T2000
74PPLINKED_PLATFORMS	= SUNW,Netra-T2000
75PPLINKED_PLATFORMS	+= SUNW,SPARC-Enterprise-T2000
76
77install:	$(ROOT_ONTARIO_DIR) $(USR_ONTARIO_DIR) \
78		$(USR_ONTARIO_SBIN_DIR) \
79		$(USR_ONTARIO_LIB_DIR) \
80		$(ROOT_ONTARIO_LIB_DIR) \
81		$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%) \
82		$(PPLINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%) \
83		.WAIT $(ONTARIO_KMODS)
84
85$(ONTARIO_KMODS):	FRC
86	@cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
87
88install_h check:	FRC
89
90lint:	modlintlib .WAIT $(LINT_DEPS)
91
92LINT_LIBS	= $(LINT_LIB) \
93			-L$(ONTARIO_LINT_LIB_DIR) \
94			-L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \
95			    $(CLOSED_LINT_KMODS:%=-l%) \
96			-L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%)
97
98lint.platmod:   modlintlib
99	@-$(ECHO) "\n$(IMPLEMENTED_PLATFORM) platform-dependent module: global crosschecks:"
100	@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
101
102EXPORT_SRC:
103	$(RM) Makefile+
104	sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
105		< Makefile > Makefile+
106	$(MV) Makefile+ Makefile
107	$(CHMOD) 444 Makefile
108# EXPORT DELETE END
109
110#
111#	Include common targets.
112#
113include $(UTSBASE)/$(PLATFORM)/ontario/Makefile.targ
114