xref: /titanic_41/usr/src/uts/sun4u/serengeti/Makefile (revision 8eea8e29cc4374d1ee24c25a07f45af132db3499)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# uts/sun4u/serengeti/Makefile
24# Copyright 2000-2003 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27#ident	"%Z%%M%	%I%	%E% SMI"
28#
29#	This makefile drives the production of the sun4u serengeti platform
30#	module.
31#
32#	sun4u implementation architecture dependent
33#
34
35#
36#	Path to the base of the uts directory tree (usually /usr/src/uts).
37#
38UTSBASE	= ../..
39
40#
41#	Include common rules.
42#
43include $(UTSBASE)/sun4u/serengeti/Makefile.serengeti
44
45def		:=	TARGET= def
46all		:=	TARGET= all
47install		:=	TARGET= install
48install_h	:=	TARGET= install_h
49clean		:=	TARGET= clean
50clobber		:=	TARGET= clobber
51lint		:=	TARGET= lint
52lintlib		:=	TARGET= lintlib
53modlintlib	:=	TARGET= modlintlib
54clean.lint	:=	TARGET= clean.lint
55check		:=	TARGET= check
56
57#
58#	Default build targets.
59#
60.KEEP_STATE:
61
62def all clean clean.lint clobber: genassym unix .WAIT $(SERENGETI_KMODS)
63
64lintlib:	unix
65
66modlintlib:	$(SERENGETI_KMODS)
67
68IMPLEMENTED_PLATFORM	= SUNW,Sun-Fire
69
70# EXPORT DELETE START
71#
72# aes256 is delivered in the SUNWcryr package which is removed from
73# the EXPORT_SRC build.
74#
75SERENGETI_CRYPTO_LINKS	+= aes256
76# EXPORT DELETE END
77
78install:	$(ROOT_SERENGETI_DIR) $(USR_SERENGETI_DIR) \
79		$(USR_SERENGETI_INC_DIR) \
80		$(USR_SERENGETI_SBIN_DIR) \
81		$(USR_SERENGETI_LIB_DIR) \
82		$(SERENGETI_CRYPTO_LINKS) \
83		genassym unix .WAIT \
84		$(SERENGETI_KMODS) \
85		pcicfg
86
87pcicfg:		$(ROOT_PSM_MISC_DIR_64)/pcicfg.e
88		-@$(RM) $(ROOT_SERENGETI_MISC_DIR_64)/$@
89		$(SYMLINK) ../../../../sun4u/kernel/misc/sparcv9/pcicfg.e \
90		$(ROOT_SERENGETI_MISC_DIR_64)/$@
91
92genassym unix $(SERENGETI_KMODS): FRC
93	@cd $@; pwd; $(MAKE) $(TARGET)
94
95$(SERENGETI_CRYPTO_LINKS): $(ROOT_SERENGETI_CRYPTO_DIR_64)
96	-$(RM) $(ROOT_SERENGETI_CRYPTO_DIR_64)/$@;
97	$(SYMLINK) $(ROOT_US3_CRYPTO_LINK)/$@ $(ROOT_SERENGETI_CRYPTO_DIR_64)/$@
98
99install_h check:	FRC
100	@cd sys; pwd; $(MAKE) $(TARGET)
101
102
103lint:		modlintlib
104
105#
106# The 'lint.platmod' target lints the serengeti platform module against the sun4u
107# kernel.  This ends up doing all the kernel cross-checks, so it takes a couple
108# of minutes.  Due to the low ROI, it's not run by default, but it's a good
109# idea to run this if you change os/serengeti.c.
110#
111LINT_LIBS	 = $(LINT_LIB) \
112		   -L$(SERENGETI_LINT_LIB_DIR) \
113		   -L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \
114		   -L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%)
115
116lint.platmod:	modlintlib
117	@-$(ECHO) "\nSerengeti Platform-dependent module: global crosschecks:"
118	@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
119
120# EXPORT DELETE START
121
122EXPORT_SRC:
123	$(RM) Makefile+
124	sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
125	    < Makefile > Makefile+
126	$(MV) Makefile+ Makefile
127	$(CHMOD) 444 Makefile
128
129# EXPORT DELETE END
130
131#
132#
133#	Include common targets.
134#
135include $(UTSBASE)/sun4u/serengeti/Makefile.targ
136