xref: /illumos-gate/usr/src/uts/intel/Makefile (revision 694c35fa)
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# uts/intel/Makefile
22#
23# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
24#
25#	This makefile drives the production of all implementation architecture
26#	independent modules for Intel processors.
27
28UTSBASE = ..
29
30include Makefile.intel
31
32LINT_KMODS_X1	= $(LINT_KMODS:nsmb=)
33LINT_KMODS_X2	= $(LINT_KMODS_X1:smbfs=)
34LINT_KMODLIBS	= $(LINT_KMODS_X2:e1000g=)
35LINT_LIBS	= $(LINT_LIB) $(GEN_LINT_LIB) \
36		  $(LINT_KMODLIBS:%=$(LINT_LIB_DIR)/llib-l%.ln) \
37		  $(CLOSED_LINT_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
38
39$(CLOSED_BUILD)LINT_LIBS	+= $(SVVS_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
40$(CLOSED_BUILD)LINT_CLOSED_XMOD4	= $(CLOSED_XMODS:bnx=)
41$(CLOSED_BUILD)LINT_CLOSED_XMOD3	= $(LINT_CLOSED_XMOD4:bnxe=)
42$(CLOSED_BUILD)LINT_CLOSED_XMOD2	= $(LINT_CLOSED_XMOD3:lsimega=)
43$(CLOSED_BUILD)LINT_CLOSED_XMOD1	= $(LINT_CLOSED_XMOD2:adpu320=)
44$(CLOSED_BUILD)LINT_LIBS	+= $(LINT_XMODLIBS:%=$(LINT_LIB_DIR)/llib-l%.ln)
45
46#
47# dprov is delivered in the SUNWcryptoint package.
48#
49DRV_KMODS	+= dprov
50
51#
52#
53def		:=	TARGET= def
54def.prereq	:=	TARGET= def
55all		:=	TARGET= all
56all.prereq	:=	TARGET= all
57install		:=	TARGET= install
58install.prereq	:=	TARGET= all
59clean		:=	TARGET= clean
60clobber		:=	TARGET= clobber
61lint		:=	TARGET= lint
62lint.prereq	:=	TARGET= lint
63modlintlib	:=	TARGET= modlintlib
64modlist		:=	TARGET= modlist
65modlist		:=	NO_STATE= -K $$MODSTATE$$$$
66clean.lint	:=	TARGET= clean.lint
67check		:=	TARGET= check
68install_h	:=	TARGET= install_h
69install_h.prereq	:=	TARGET= install_h
70
71.KEEP_STATE:
72
73.PARALLEL:	$(PARALLEL_KMODS) $(CLOSED_KMODS) $(SVVS) $(XMODS) \
74		$(CLOSED_XMODS) config $(LINT_DEPS)
75
76def all install clean clobber modlist: $(KMODS) $(CLOSED_KMODS) \
77	$(SVVS) $(XMODS) $(CLOSED_XMODS) config
78
79
80#
81# Privilege constants
82#
83# NOTE: The rules for generating priv_const.c file are shared between all
84# processor architectures and and should be kept in sync. If they are changed in
85# this file make sure that sparc rules are updated as well.
86#
87PRIVS_C = $(SRC)/uts/common/os/priv_const.c
88
89$(PRIVS_C): $(PRIVS_AWK) $(PRIVS_DEF)
90	$(NAWK) -f $(PRIVS_AWK) < $(PRIVS_DEF) cfile=$@
91
92#
93# Prerequisites
94#
95# The uts/Makefile defines build parallelism for x86 platforms such that i86pc,
96# i86xpv and intel are all built in parallel. This requires building certain
97# parts before the parallel build can start. The uts/Makefile appends the
98# '.prereq' string to the original target and executes this Makefile to build
99# any prerequisites needed before the full parallel build can start. After that
100# make continues with normal targets.
101#
102# Any build prerequisites for x86 builds should be described here.
103#
104# genassym is used to build intel/dtrace and genunix, so it should be built
105# first.
106#
107# priv_const.c is required to build genunix.
108#
109# genunix is used by everyone to ctf-merge with. Genunix is CTF-merged with
110#   intel/ip so as a side effect this dependency builds intel/ip as part of the
111#   prerequisites.
112#
113# intel/dtrace depends on i86pc/genassym, so we need to build both
114# i86pc/genassym and intel/genassym.
115#
116all.prereq install.prereq def.prereq: genunix FRC
117	@cd ../i86pc/genassym; pwd; $(MAKE) $(@:%.prereq=%)
118
119#
120# i86pc lint libraries should be built first
121#
122lint.prereq: FRC
123	@cd ../i86pc; pwd; $(MAKE) $(NO_STATE) lint
124
125#
126# Nothing to do for any other prerequisite targets.
127#
128%.prereq:
129
130genunix: $(PRIVS_C)
131
132modlintlib clean.lint: $(LINT_KMODS) $(CLOSED_LINT_KMODS) $(SVVS) \
133	$(XMODS) $(CLOSED_XMODS)
134
135$(KMODS) $(SUBDIRS) config:	FRC
136	@cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
137
138$(CLOSED_KMODS):	FRC
139	cd $(CLOSED)/uts/intel/$@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
140
141$(XMODS):	FRC
142	@if [ -f $@/Makefile  ]; then \
143		cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET); \
144	else \
145		true; \
146	fi
147
148$(SVVS) $(CLOSED_XMODS):	FRC
149	@if [ -f $(CLOSED)/uts/intel/$@/Makefile  ]; then \
150		cd $(CLOSED)/uts/intel/$@; pwd; \
151		    $(MAKE) $(NO_STATE) $(TARGET); \
152	else \
153		true; \
154	fi
155
156install_h check:	FRC
157	@cd sys; pwd; $(MAKE) $(TARGET)
158	@cd asm; pwd; $(MAKE) $(TARGET)
159	@cd ia32/sys; pwd; $(MAKE) $(TARGET)
160	@cd amd64/sys; pwd; $(MAKE) $(TARGET)
161
162#
163# Work-around to disable acpica global crosscheck lint warnings
164#
165LGREP.intel =	grep -v 'intel/io/acpica'
166
167#
168#	Full kernel lint target.
169#
170LINT_TARGET	= globallint
171
172# workaround for multiply defined errors
173globallint := LINTFLAGS += -erroff=E_NAME_MULTIPLY_DEF2
174
175globallint:
176	@pwd
177	@-$(ECHO) "\nFULL KERNEL: global crosschecks:"
178	@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.intel) | $(LGREP.2)
179
180lint:	modlintlib .WAIT $(LINT_DEPS)
181
182include ../Makefile.targ
183