Print this page
195 Need replacement for nfs/lockd+klm
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Jeremy Jones <jeremy@delphix.com>
Reviewed by: Jeff Biseda <jbiseda@delphix.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/Makefile
+++ new/usr/src/uts/Makefile
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 #
24 24 # include global definitions
25 25 include ../Makefile.master
26 26
27 27 #
28 28 # List of architectures to build as part of the standard build.
29 29 #
30 30 # Some of these architectures are built in parallel (see i386_PARALLEL and
31 31 # sparc_PARALLEL). This requires building some parts first before parallel build
32 32 # can start. Platform make files know what should be built as a prerequisite for
33 33 # the parallel build to work. The i386_PREREQ and sparc_PREREQ variables tell
34 34 # which platform directory to enter to start making prerequisite dependencies.
35 35 #
36 36 sparc_ARCHITECTURES = sun4v sun4u sparc
37 37
38 38 i386_ARCHITECTURES = i86pc i86xpv intel
39 39
40 40 #
41 41 # For i386 all architectures can be compiled in parallel.
42 42 #
43 43 # intel/Makefile knows how to build prerequisites needed for parallel build.
44 44 #
45 45 i386_PREREQ = intel
46 46 i386_PARALLEL = $(i386_ARCHITECTURES)
47 47
48 48 #
49 49 # For sparc all architectures can be compiled in parallel.
50 50 #
51 51 # sun4/Makefile knows how to build prerequisites needed for parallel build.
52 52 # can start.
53 53 #
54 54 sparc_PREREQ = sun4
55 55 sparc_PARALLEL = $(sparc_ARCHITECTURES)
56 56
57 57 #
58 58 # Platforms defined in $(MACH)_PARALLEL are built in parallel. DUMMY is placed
59 59 # at the end in case $(MACH)_PARALLEL is empty to prevent everything going in
60 60 # parallel.
61 61 #
62 62 .PARALLEL: $($(MACH)_PARALLEL) DUMMY
63 63
64 64 #
65 65 # For build prerequisites we use a special target which is constructed by adding
66 66 # '.prereq' suffix to the $(MACH)_PREREQ.
67 67 #
68 68 PREREQ_TARGET = $($(MACH)_PREREQ:%=%.prereq)
69 69
70 70
71 71 def := TARGET= def
72 72 all := TARGET= all
73 73 install := TARGET= install
74 74 install_h := TARGET= install_h
75 75 clean := TARGET= clean
76 76 clobber := TARGET= clobber
77 77 lint := TARGET= lint
78 78 clean.lint := TARGET= clean.lint
79 79 check := TARGET= check
80 80 modlist := TARGET= modlist
81 81 modlist := NO_STATE= -K $$MODSTATE$$$$
82 82
83 83 .KEEP_STATE:
84 84
85 85 def all lint: all_h $(PMTMO_FILE) $($(MACH)_ARCHITECTURES)
86 86
87 87 install: all_h install_dirs $(PMTMO_FILE) $($(MACH)_ARCHITECTURES)
88 88
89 89 install_dirs:
90 90 @cd ..; pwd; $(MAKE) rootdirs
91 91 @pwd
92 92
93 93 #
94 94 # Rule to build prerequisites. The left part of the pattern will match
95 95 # PREREQ_TARGET.
96 96 #
97 97 # The location of the Makefile is determined by strippinng '.prereq' suffix from
98 98 # the target name. We add '.prereq' suffix to the target passed to the child
99 99 # Makefile so that it can distinguish prerequisite build from the regular one.
100 100 #
101 101 #
102 102 %.prereq:
103 103 @cd $(@:%.prereq=%); pwd; $(MAKE) $(NO_STATE) $(TARGET).prereq
104 104
105 105 #
106 106 # Rule to build architecture files. Build all required prerequisites and then
107 107 # build the rest (potentially in parallel).
108 108 #
109 109 $($(MACH)_ARCHITECTURES): $(PREREQ_TARGET) FRC
110 110 @cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
111 111
112 112 $(PMTMO_FILE) pmtmo_file: $(PATCH_MAKEUP_TABLE)
113 113 @if [ -z "$(PATCH_MAKEUP_TABLE)" ] ; then \
114 114 echo 'ERROR: $$(PATCH_MAKEUP_TABLE) not set' \
115 115 'in environment' >&2 ; \
116 116 exit 1 ; \
117 117 fi
118 118 RELEASE="$(RELEASE)" MACH="$(MACH)" \
119 119 $(CTFCVTPTBL) -o $(PMTMO_FILE) $(PATCH_MAKEUP_TABLE)
120 120
121 121 #
122 122 # The following is the list of directories which contain Makefiles with
123 123 # targets to install header file. The machine independent headers are
124 124 # installed by invoking the Makefile in the directory containing the
125 125 # header files. Machine and architecture dependent headers are installed
126 126 # by invoking the main makefile for that architecture/machine which,
127 127 # in turn, is responsible for invoking the Makefiles which install headers.
↓ open down ↓ |
127 lines elided |
↑ open up ↑ |
128 128 # It is done this way so as not to assume that all of the header files in
129 129 # the architecture/machine dependent subdirectories are in completely
130 130 # isomorphic locations.
131 131 #
132 132 COMMON_HDRDIRS= common/avs \
133 133 common/c2 \
134 134 common/des \
135 135 common/fs \
136 136 common/gssapi \
137 137 common/idmap \
138 + common/klm \
138 139 common/inet \
139 140 common/inet/ipf/netinet \
140 141 common/inet/kssl \
141 142 common/inet/nca \
142 143 common/inet/sockmods/netpacket \
143 144 common/io/bpf/net \
144 145 common/ipp \
145 146 common/net \
146 147 common/netinet \
147 148 common/nfs \
148 149 common/pcmcia/sys \
149 150 common/rpc \
150 151 common/rpcsvc \
151 152 common/sharefs \
152 153 common/smb \
153 154 common/smbsrv \
↓ open down ↓ |
6 lines elided |
↑ open up ↑ |
154 155 common/sys \
155 156 common/vm
156 157
157 158
158 159 # These aren't the only headers in closed. But the other directories
159 160 # are simple enough that they can be driven from the src tree.
160 161 $(CLOSED_BUILD)COMMON_HDRDIRS += $(CLOSED)/uts/common/sys
161 162
162 163 #
163 164 # Subset of COMMON_HDRDIRS in which at least one header is generated
164 -# at runtime (e.g., rpcgen). (This is a partial list; there are
165 -# other directories that should be included and do not yet have the
166 -# necessary Makefile support. See 6414855.)
165 +# at runtime (e.g., rpcgen), and in which "make clean" should run.
166 +# Other directories should be included here, but do not yet have the
167 +# necessary Makefile support (make clean). See 6414855.
167 168 #
168 -DYNHDRDIRS = common/rpcsvc common/idmap common/sys
169 +DYNHDRDIRS = common/idmap \
170 + common/klm \
171 + common/rpcsvc \
172 + common/sys
169 173
170 174 sparc_HDRDIRS= sun/sys
171 175 i386_HDRDIRS= i86pc/vm i86xpv/vm
172 176
173 177 HDRDIRS= $(COMMON_HDRDIRS) $($(MACH)_HDRDIRS)
174 178 install_h check: $(HDRDIRS) $($(MACH)_ARCHITECTURES)
175 179
176 180 $(HDRDIRS): FRC
177 181 @cd $@; pwd; $(MAKE) $(TARGET)
178 182
179 183 # ensures that headers made by rpcgen and others are available in uts source
180 184 # for kernel builds to reference without building install_h
181 185 #
182 186 all_h: FRC
183 187 @cd common/sys; pwd; $(MAKE) $@
184 188 @cd common/rpc; pwd; $(MAKE) $@
185 189 @cd common/rpcsvc; pwd; $(MAKE) $@
186 190 @cd common/gssapi; pwd; $(MAKE) $@
187 191 @cd common/idmap; pwd; $(MAKE) $@
192 + @cd common/klm; pwd; $(MAKE) $@
188 193
189 194 clean clobber: $($(MACH)_ARCHITECTURES) $(DYNHDRDIRS)
190 195 @if [ '$(PATCH_BUILD)' != '#' ] ; then \
191 196 echo $(RM) $(PMTMO_FILE) ; \
192 197 $(RM) $(PMTMO_FILE) ; \
193 198 fi
194 199
195 200 EXTRA_CLOBBER_TARGETS= common/avs/ns/rdc
196 201 clobber: $(EXTRA_CLOBBER_TARGETS)
197 202
198 203
199 204 clean.lint modlist: $($(MACH)_ARCHITECTURES)
200 205
201 206 #
202 207 # Cross-reference customization: build a cross-reference over all of
203 208 # the supported architectures. Although there's no correct way to set
204 209 # the include path (since we don't know what architecture is the one
205 210 # the user will be interested in), it's historically been set to
206 211 # mirror the $(XRDIRS) list, and that works kinda sorta okay.
207 212 #
208 213 # We need to manually prune usr/closed/uts/{i86xpv|sfmmu|i86pc} since
209 214 # none of them exist.
210 215 #
211 216 SHARED_XRDIRS = $(sparc_ARCHITECTURES) $(i386_ARCHITECTURES) sun4 sfmmu \
212 217 sun common
213 218 CLOSED_XRDIRS = $(SHARED_XRDIRS:%=% ../../closed/uts/%)
214 219 XRDIRS = $(SHARED_XRDIRS)
215 220 CLOSED_XRDIRS_XEN = $(CLOSED_XRDIRS:../../closed/uts/i86xpv=)
216 221 CLOSED_XRDIRS_1 = $(CLOSED_XRDIRS_XEN:../../closed/uts/i86pc=)
217 222 $(CLOSED_BUILD)XRDIRS = $(CLOSED_XRDIRS_1:../../closed/uts/sfmmu=)
218 223
219 224 XRINCDIRS = $(XRDIRS)
220 225
221 226 cscope.out tags: FRC
222 227 $(XREF) -x $@
223 228
224 229 FRC:
↓ open down ↓ |
27 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX