xref: /titanic_41/usr/src/uts/sun4u/taco/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/taco/Makefile
24# Copyright 2002-2003 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27#pragma ident	"%Z%%M%	%I%	%E% SMI"
28#
29#	This makefile drives the production of the sun4u taco 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/taco/Makefile.taco
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: $(TACO_KMODS)
63
64modlintlib:	$(TACO_KMODS)
65
66# EXPORT DELETE START
67#
68# aes256 is delivered in the SUNWcryr package which is removed from
69# the EXPORT_SRC build.
70#
71TACO_CRYPTO_LINKS	+= aes256
72# EXPORT DELETE END
73
74install:	$(ROOT_TACO_DIR) \
75		$(USR_TACO_DIR) \
76		$(USR_TACO_INC_DIR) \
77		$(USR_TACO_SBIN_DIR) \
78		$(USR_TACO_LIB_DIR) \
79		$(TACO_CRYPTO_LINKS) \
80		$(TACO_KMODS)
81
82check install_h:
83
84lint:		modlintlib
85
86#
87# The 'lint.platmod' target lints the taco platform module against the sun4u
88# kernel.  This ends up doing all the kernel cross-checks, so it takes a couple
89# of minutes.  Due to the low ROI, it's not run by default, but it's a good
90# idea to run this if you change os/taco.c.
91#
92LINT_LIBS	 = $(LINT_LIB) \
93		   -L$(TACO_LINT_LIB_DIR) \
94		   -L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \
95		   -L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%)
96
97lint.platmod:	modlintlib
98	@-$(ECHO) "\nTaco Platform-dependent module: global crosschecks:"
99	@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
100
101$(TACO_KMODS): FRC
102	@cd $@; pwd; $(MAKE) $(TARGET)
103
104$(TACO_CRYPTO_LINKS): $(ROOT_TACO_CRYPTO_DIR_64)
105	-$(RM) $(ROOT_TACO_CRYPTO_DIR_64)/$@;
106	$(SYMLINK) $(ROOT_US3_CRYPTO_LINK)/$@ $(ROOT_TACO_CRYPTO_DIR_64)/$@
107
108
109# EXPORT DELETE START
110
111EXPORT_SRC:
112	$(RM) Makefile+
113	sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
114	    < Makefile > Makefile+
115	$(MV) Makefile+ Makefile
116	$(CHMOD) 444 Makefile
117
118# EXPORT DELETE END
119
120#
121#	Include common targets.
122#
123include $(UTSBASE)/sun4u/taco/Makefile.targ
124