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