xref: /illumos-gate/usr/src/uts/i86pc/Makefile (revision ae115bc7)
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 all implementation architecture
28#	dependent modules for the i86pc architecture.
29#
30
31UTSBASE = ..
32
33include Makefile.i86pc
34
35#
36#	The following are x86 specific (rather than i86pc) specific modules
37#	which are required for the i86pc kernel to completely lint. They are
38#	not involved in the build in any other way. In order to minimize
39#	build time, it is assumed that they are up to date.
40#
41INTEL_LIB_DIR	 = $(UTSBASE)/intel/lint-libs/$(OBJS_DIR)
42
43INTEL_LINTS	 = genunix
44
45LINT_LIBS	 = $(LINT_LIB) \
46		   $(GENUNIX_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln) \
47		   $(PARALLEL_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln) \
48		   $(CLOSED_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln) \
49		   $(INTEL_LINTS:%=$(INTEL_LIB_DIR)/llib-l%.ln)
50
51#
52#
53#
54def		:=	TARGET= def
55all		:=	TARGET= all
56install		:=	TARGET= install
57clean		:=	TARGET= clean
58clobber		:=	TARGET= clobber
59lint		:=	TARGET= lint
60lintlib		:=	TARGET= lintlib
61machmodlintlib	:=	TARGET= modlintlib
62modlist		:=	TARGET= modlist
63modlist	modlist.intel :=	NO_STATE= -K $$MODSTATE$$$$
64clean.lint	:=	TARGET= clean.lint
65check		:=	TARGET= check
66
67.KEEP_STATE:
68
69.PARALLEL:	$(PARALLEL_KMODS) $(CLOSED_KMODS) $(XMODS) $(CLOSED_XMODS) \
70		modlist modlist.intel
71
72INITIAL_TARGETS = \
73	genassym \
74	unix \
75	cpu/scripts
76
77def all clean clobber clean.lint: setup genassym unix .WAIT \
78	$(KMODS) $(CLOSED_KMODS) $(XMODS) $(CLOSED_XMODS)
79
80install: install_platforms setup genassym unix .WAIT \
81	$(KMODS) $(CLOSED_KMODS) $(XMODS) $(CLOSED_XMODS)
82
83# list the modules under i86pc.
84modlist: unix $(KMODS) $(CLOSED_KMODS) $(XMODS) $(CLOSED_XMODS)
85
86# list the modules for Install -k i86pc.
87modlist.karch: modlist modlist.intel
88
89modlist.intel:
90	@cd $(SRC)/uts/intel; pwd; $(MAKE) $(NO_STATE) modlist
91
92lintlib:	unix
93
94modlintlib:	$(KMODS) $(CLOSED_KMODS)
95
96genassym unix $(KMODS):	FRC
97	@cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
98
99setup: FRC
100	@cd cpu/scripts; pwd; $(MAKE) $(TARGET)
101
102$(XMODS):	FRC
103	@if [ -f $@/Makefile  ]; then \
104		cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET); \
105	else \
106		true; \
107	fi
108
109$(CLOSED_KMODS):	FRC
110	cd $(CLOSED)/uts/i86pc/$@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
111
112$(CLOSED_XMODS):	FRC
113	@if [ -f $(CLOSED)/uts/i86pc/$@/Makefile  ]; then \
114		cd $(CLOSED)/uts/i86pc/$@; pwd; \
115		    $(MAKE) $(NO_STATE) $(TARGET); \
116	else \
117		true; \
118	fi
119
120install_h check:	FRC
121	@cd sys; pwd; $(MAKE) $(TARGET)
122
123#
124# Definitions for the /platform directory aliases.
125# Currently none for i86pc.
126#
127PLAT_LINKS	=
128
129#
130# Make the /platform directories.  This is hardwired here because
131# the first stage of the project (KBI) only implements the userland
132# changes, but the only reasonable place to record the aliases is
133# here in kernel land.
134#
135install_platforms:	$(ROOT_PSM_DIR) $(USR_PSM_DIR) \
136			$(ROOT_PLAT_LINKS) $(USR_PLAT_LINKS) \
137			$(OEM_USR_PLAT_LINKS)
138
139#
140#	Full kernel lint target.
141#
142LINT_TARGET	= globallint
143
144# workaround for multiply defined errors
145globallint := LINTFLAGS += -erroff=E_NAME_MULTIPLY_DEF2
146
147globallint:
148	@-$(ECHO) "\nFULL KERNEL: global crosschecks:"
149	@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
150
151lint:	lintlib .WAIT modlintlib .WAIT $(INTEL_LINTS) $(LINT_DEPS)
152
153$(INTEL_LINTS):	FRC
154	@cd $(UTSBASE)/intel/$@; pwd; $(MAKE) modlintlib
155
156include ../Makefile.targ
157
158#
159# Cross-reference customization: build a cross-reference over all of the
160# i86pc-related directories.
161#
162SHARED_XRDIRS	= ../i86pc ../intel ../common
163XRDIRS		= $(SHARED_XRDIRS)
164$(CLOSED_BUILD)XRDIRS	= $(SHARED_XRDIRS:../%=../% ../../../closed/uts/%)
165XRPRUNE	= sun4u sun4
166
167cscope.out tags: FRC
168	$(XREF) -x $@
169