Print this page
3644 Add virtio-net support into illumos
4945 Additional vioif fixes
Contributions by: Dan Kimmel <dan.kimmel@delphix.com>
Contributions by: Hans Rosenfeld <hans.rosenfeld@nexenta.com>
Contributions by: Alexey Zaytsev <alexey.zaytsev@gmail.com>
Contributions by: Dmitry Yusupov <Dmitry.Yusupov@nexenta.com>
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/uts/common/Makefile.rules
+++ new/usr/src/uts/common/Makefile.rules
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 #
23 23 # Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
24 24 # Copyright 2013 Garrett D'Amore <garrett@damore.org>
25 25 # Copyright 2014 Nexenta Systems, Inc. All rights reserved.
26 26 #
27 27
28 28 #
29 29 # uts/common/Makefile.rules
30 30 #
31 31 # This Makefile defines all the file build rules for the directory
32 32 # uts/common and its children. These are the source files which may
33 33 # be considered common to all SunOS systems.
34 34 #
35 35 # The following two-level ordering must be maintained in this file.
36 36 # Lines are sorted first in order of decreasing specificity based on
37 37 # the first directory component. That is, sun4u rules come before
38 38 # sparc rules come before common rules.
39 39 #
40 40 # Lines whose initial directory components are equal are sorted
41 41 # alphabetically by the remaining components.
42 42
43 43 #
44 44 # Section 1a: C objects build rules
45 45 #
46 46 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/aes/%.c
47 47 $(COMPILE.c) -o $@ $<
48 48 $(CTFCONVERT_O)
49 49
50 50 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/arcfour/%.c
51 51 $(COMPILE.c) -o $@ $<
52 52 $(CTFCONVERT_O)
53 53
54 54 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/blowfish/%.c
55 55 $(COMPILE.c) -o $@ $<
56 56 $(CTFCONVERT_O)
57 57
58 58 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/ecc/%.c
59 59 $(COMPILE.c) -o $@ $<
60 60 $(CTFCONVERT_O)
61 61
62 62 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/modes/%.c
63 63 $(COMPILE.c) -o $@ $<
64 64 $(CTFCONVERT_O)
65 65
66 66 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/padding/%.c
67 67 $(COMPILE.c) -o $@ $<
68 68 $(CTFCONVERT_O)
69 69
70 70 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/rng/%.c
71 71 $(COMPILE.c) -o $@ $<
72 72 $(CTFCONVERT_O)
73 73
74 74 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/rsa/%.c
75 75 $(COMPILE.c) -o $@ $<
76 76 $(CTFCONVERT_O)
77 77
78 78 $(OBJS_DIR)/%.o: $(COMMONBASE)/bignum/%.c
79 79 $(COMPILE.c) -o $@ $<
80 80 $(CTFCONVERT_O)
81 81
82 82 $(OBJS_DIR)/%.o: $(UTSBASE)/common/bignum/%.c
83 83 $(COMPILE.c) -o $@ $<
84 84 $(CTFCONVERT_O)
85 85
86 86 $(OBJS_DIR)/%.o: $(COMMONBASE)/mpi/%.c
87 87 $(COMPILE.c) -o $@ $<
88 88 $(CTFCONVERT_O)
89 89
90 90 $(OBJS_DIR)/%.o: $(COMMONBASE)/acl/%.c
91 91 $(COMPILE.c) -o $@ $<
92 92 $(CTFCONVERT_O)
93 93
94 94 $(OBJS_DIR)/%.o: $(COMMONBASE)/avl/%.c
95 95 $(COMPILE.c) -o $@ $<
96 96 $(CTFCONVERT_O)
97 97
98 98 $(OBJS_DIR)/%.o: $(COMMONBASE)/ucode/%.c
99 99 $(COMPILE.c) -o $@ $<
100 100 $(CTFCONVERT_O)
101 101
102 102 $(OBJS_DIR)/%.o: $(UTSBASE)/common/brand/sn1/%.c
103 103 $(COMPILE.c) -o $@ $<
104 104 $(CTFCONVERT_O)
105 105
106 106 $(OBJS_DIR)/%.o: $(UTSBASE)/common/brand/solaris10/%.c
107 107 $(COMPILE.c) -o $@ $<
108 108 $(CTFCONVERT_O)
109 109
110 110 $(OBJS_DIR)/%.o: $(UTSBASE)/common/c2/%.c
111 111 $(COMPILE.c) -o $@ $<
112 112 $(CTFCONVERT_O)
113 113
114 114 $(OBJS_DIR)/%.o: $(UTSBASE)/common/conf/%.c
115 115 $(COMPILE.c) -o $@ $<
116 116 $(CTFCONVERT_O)
117 117
118 118 $(OBJS_DIR)/%.o: $(UTSBASE)/common/contract/%.c
119 119 $(COMPILE.c) -o $@ $<
120 120 $(CTFCONVERT_O)
121 121
122 122 $(OBJS_DIR)/%.o: $(UTSBASE)/common/cpr/%.c
123 123 $(COMPILE.c) -o $@ $<
124 124 $(CTFCONVERT_O)
125 125
126 126 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ctf/%.c
127 127 $(COMPILE.c) -o $@ $<
128 128 $(CTFCONVERT_O)
129 129
130 130 $(OBJS_DIR)/%.o: $(COMMONBASE)/ctf/%.c
131 131 $(COMPILE.c) -o $@ $<
132 132 $(CTFCONVERT_O)
133 133
134 134 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/des/%.c
135 135 $(COMPILE.c) -o $@ $<
136 136 $(CTFCONVERT_O)
137 137
138 138 $(OBJS_DIR)/%.o: $(COMMONBASE)/smbios/%.c
139 139 $(COMPILE.c) -o $@ $<
140 140 $(CTFCONVERT_O)
141 141
142 142 $(OBJS_DIR)/%.o: $(UTSBASE)/common/des/%.c
143 143 $(COMPILE.c) -o $@ $<
144 144 $(CTFCONVERT_O)
145 145
146 146 $(OBJS_DIR)/%.o: $(UTSBASE)/common/crypto/api/%.c
147 147 $(COMPILE.c) -o $@ $<
148 148 $(CTFCONVERT_O)
149 149
150 150 $(OBJS_DIR)/%.o: $(UTSBASE)/common/crypto/core/%.c
151 151 $(COMPILE.c) -o $@ $<
152 152 $(CTFCONVERT_O)
153 153
154 154 $(OBJS_DIR)/%.o: $(UTSBASE)/common/crypto/io/%.c
155 155 $(COMPILE.c) -o $@ $<
156 156 $(CTFCONVERT_O)
157 157
158 158 $(OBJS_DIR)/%.o: $(UTSBASE)/common/crypto/spi/%.c
159 159 $(COMPILE.c) -o $@ $<
160 160 $(CTFCONVERT_O)
161 161
162 162 $(OBJS_DIR)/%.o: $(COMMONBASE)/pci/%.c
163 163 $(COMPILE.c) -o $@ $<
164 164 $(CTFCONVERT_O)
165 165
166 166 $(OBJS_DIR)/%.o: $(COMMONBASE)/devid/%.c
167 167 $(COMPILE.c) -o $@ $<
168 168 $(CTFCONVERT_O)
169 169
170 170 $(OBJS_DIR)/%.o: $(UTSBASE)/common/disp/%.c
171 171 $(COMPILE.c) -o $@ $<
172 172 $(CTFCONVERT_O)
173 173
174 174 $(OBJS_DIR)/%.o: $(UTSBASE)/common/dtrace/%.c
175 175 $(COMPILE.c) -o $@ $<
176 176 $(CTFCONVERT_O)
177 177
178 178 $(OBJS_DIR)/%.o: $(COMMONBASE)/exacct/%.c
179 179 $(COMPILE.c) -o $@ $<
180 180 $(CTFCONVERT_O)
181 181
182 182 $(OBJS_DIR)/%.o: $(UTSBASE)/common/exec/aout/%.c
183 183 $(COMPILE.c) -o $@ $<
184 184 $(CTFCONVERT_O)
185 185
186 186 $(OBJS_DIR)/%.o: $(UTSBASE)/common/exec/elf/%.c
187 187 $(COMPILE.c) -o $@ $<
188 188 $(CTFCONVERT_O)
189 189
190 190 $(OBJS_DIR)/%.o: $(UTSBASE)/common/exec/intp/%.c
191 191 $(COMPILE.c) -o $@ $<
192 192 $(CTFCONVERT_O)
193 193
194 194 $(OBJS_DIR)/%.o: $(UTSBASE)/common/exec/shbin/%.c
195 195 $(COMPILE.c) -o $@ $<
196 196 $(CTFCONVERT_O)
197 197
198 198 $(OBJS_DIR)/%.o: $(UTSBASE)/common/exec/java/%.c
199 199 $(COMPILE.c) -o $@ $<
200 200 $(CTFCONVERT_O)
201 201
202 202 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/%.c
203 203 $(COMPILE.c) -o $@ $<
204 204 $(CTFCONVERT_O)
205 205
206 206 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/autofs/%.c
207 207 $(COMPILE.c) -o $@ $<
208 208 $(CTFCONVERT_O)
209 209
210 210 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/cachefs/%.c
211 211 $(COMPILE.c) -o $@ $<
212 212 $(CTFCONVERT_O)
213 213
214 214 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/dcfs/%.c
215 215 $(COMPILE.c) -o $@ $<
216 216 $(CTFCONVERT_O)
217 217
218 218 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/devfs/%.c
219 219 $(COMPILE.c) -o $@ $<
220 220 $(CTFCONVERT_O)
221 221
222 222 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/ctfs/%.c
223 223 $(COMPILE.c) -o $@ $<
224 224 $(CTFCONVERT_O)
225 225
226 226 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/doorfs/%.c
227 227 $(COMPILE.c) -o $@ $<
228 228 $(CTFCONVERT_O)
229 229
230 230 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/dev/%.c
231 231 $(COMPILE.c) -o $@ $<
232 232 $(CTFCONVERT_O)
233 233
234 234 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/fd/%.c
235 235 $(COMPILE.c) -o $@ $<
236 236 $(CTFCONVERT_O)
237 237
238 238 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/fifofs/%.c
239 239 $(COMPILE.c) -o $@ $<
240 240 $(CTFCONVERT_O)
241 241
242 242 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/hsfs/%.c
243 243 $(COMPILE.c) -o $@ $<
244 244 $(CTFCONVERT_O)
245 245
246 246 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/lofs/%.c
247 247 $(COMPILE.c) -o $@ $<
248 248 $(CTFCONVERT_O)
249 249
250 250 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/mntfs/%.c
251 251 $(COMPILE.c) -o $@ $<
252 252 $(CTFCONVERT_O)
253 253
254 254 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/namefs/%.c
255 255 $(COMPILE.c) -o $@ $<
256 256 $(CTFCONVERT_O)
257 257
258 258 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/nfs/%.c
259 259 $(COMPILE.c) -o $@ $<
260 260 $(CTFCONVERT_O)
261 261
262 262 $(OBJS_DIR)/%.o: $(COMMONBASE)/smbsrv/%.c
263 263 $(COMPILE.c) -o $@ $<
264 264 $(CTFCONVERT_O)
265 265
266 266 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/smbsrv/%.c
267 267 $(COMPILE.c) -o $@ $<
268 268 $(CTFCONVERT_O)
269 269
270 270 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/objfs/%.c
271 271 $(COMPILE.c) -o $@ $<
272 272 $(CTFCONVERT_O)
273 273
274 274 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/pcfs/%.c
275 275 $(COMPILE.c) -o $@ $<
276 276 $(CTFCONVERT_O)
277 277
278 278 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/portfs/%.c
279 279 $(COMPILE.c) -o $@ $<
280 280 $(CTFCONVERT_O)
281 281
282 282 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/proc/%.c
283 283 $(COMPILE.c) -o $@ $<
284 284 $(CTFCONVERT_O)
285 285
286 286 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/sharefs/%.c
287 287 $(COMPILE.c) -o $@ $<
288 288 $(CTFCONVERT_O)
289 289
290 290 $(OBJS_DIR)/%.o: $(COMMONBASE)/smbclnt/%.c
291 291 $(COMPILE.c) -o $@ $<
292 292 $(CTFCONVERT_O)
293 293
294 294 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/smbclnt/netsmb/%.c
295 295 $(COMPILE.c) -o $@ $<
296 296 $(CTFCONVERT_O)
297 297
298 298 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/smbclnt/smbfs/%.c
299 299 $(COMPILE.c) -o $@ $<
300 300 $(CTFCONVERT_O)
301 301
302 302 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/sockfs/%.c
303 303 $(COMPILE.c) -o $@ $<
304 304 $(CTFCONVERT_O)
305 305
306 306 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/specfs/%.c
307 307 $(COMPILE.c) -o $@ $<
308 308 $(CTFCONVERT_O)
309 309
310 310 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/swapfs/%.c
311 311 $(COMPILE.c) -o $@ $<
312 312 $(CTFCONVERT_O)
313 313
314 314 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/tmpfs/%.c
315 315 $(COMPILE.c) -o $@ $<
316 316 $(CTFCONVERT_O)
317 317
318 318 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/udfs/%.c
319 319 $(COMPILE.c) -o $@ $<
320 320 $(CTFCONVERT_O)
321 321
322 322 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/ufs/%.c
323 323 $(COMPILE.c) -o $@ $<
324 324 $(CTFCONVERT_O)
325 325
326 326 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vscan/%.c
327 327 $(COMPILE.c) -o $@ $<
328 328 $(CTFCONVERT_O)
329 329
330 330 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/zfs/%.c
331 331 $(COMPILE.c) -o $@ $<
332 332 $(CTFCONVERT_O)
333 333
334 334 $(OBJS_DIR)/%.o: $(UTSBASE)/common/fs/zut/%.c
335 335 $(COMPILE.c) -o $@ $<
336 336 $(CTFCONVERT_O)
337 337
338 338 $(OBJS_DIR)/%.o: $(COMMONBASE)/xattr/%.c
339 339 $(COMPILE.c) -o $@ $<
340 340 $(CTFCONVERT_O)
341 341
342 342 $(OBJS_DIR)/%.o: $(COMMONBASE)/zfs/%.c
343 343 $(COMPILE.c) -o $@ $<
344 344 $(CTFCONVERT_O)
345 345
346 346 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/pmcs/%.c
347 347 $(COMPILE.c) -o $@ $<
348 348 $(CTFCONVERT_O)
349 349
350 350 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/pmcs/%.bin
351 351 $(COMPILE.b) -o $@ $<
352 352 $(CTFCONVERT_O)
353 353
354 354 $(OBJS_DIR)/%.o: $(COMMONBASE)/fsreparse/%.c
355 355 $(COMPILE.c) -o $@ $<
356 356 $(CTFCONVERT_O)
357 357
358 358 KMECHKRB5_BASE=$(UTSBASE)/common/gssapi/mechs/krb5
359 359
360 360 KGSSDFLAGS=-I $(UTSBASE)/common/gssapi/include
361 361
362 362 # Note, KRB5_DEFS can be assigned various preprocessor flags,
363 363 # typically -D defines on the make invocation. The standard compiler
364 364 # flags will not be overwritten.
365 365 KGSSDFLAGS += $(KRB5_DEFS)
366 366
367 367 $(OBJS_DIR)/%.o: $(UTSBASE)/common/gssapi/%.c
368 368 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
369 369 $(CTFCONVERT_O)
370 370
371 371 $(OBJS_DIR)/%.o: $(UTSBASE)/common/gssapi/mechs/dummy/%.c
372 372 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
373 373 $(CTFCONVERT_O)
374 374
375 375 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/%.c
376 376 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
377 377 $(CTFCONVERT_O)
378 378
379 379 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/%.c
380 380 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
381 381 $(CTFCONVERT_O)
382 382
383 383 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/des/%.c
384 384 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
385 385 $(CTFCONVERT_O)
386 386
387 387 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/arcfour/%.c
388 388 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
389 389 $(CTFCONVERT_O)
390 390
391 391 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/dk/%.c
392 392 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
393 393 $(CTFCONVERT_O)
394 394
395 395 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/enc_provider/%.c
396 396 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
397 397 $(CTFCONVERT_O)
398 398
399 399 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/hash_provider/%.c
400 400 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
401 401 $(CTFCONVERT_O)
402 402
403 403 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/keyhash_provider/%.c
404 404 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
405 405 $(CTFCONVERT_O)
406 406
407 407 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/raw/%.c
408 408 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
409 409 $(CTFCONVERT_O)
410 410
411 411 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/crypto/old/%.c
412 412 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
413 413 $(CTFCONVERT_O)
414 414
415 415 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/krb5/krb/%.c
416 416 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
417 417 $(CTFCONVERT_O)
418 418
419 419 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/krb5/os/%.c
420 420 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
421 421 $(CTFCONVERT_O)
422 422
423 423 $(OBJS_DIR)/ser_sctx.o := CPPFLAGS += -DPROVIDE_KERNEL_IMPORT=1
424 424
425 425 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/mech/%.c
426 426 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
427 427 $(CTFCONVERT_O)
428 428
429 429 $(OBJS_DIR)/%.o: $(KMECHKRB5_BASE)/profile/%.c
430 430 $(COMPILE.c) $(KGSSDFLAGS) -o $@ $<
431 431 $(CTFCONVERT_O)
432 432
433 433 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ncall/%.c
434 434 $(COMPILE.c) -o $@ $<
435 435 $(CTFCONVERT_O)
436 436
437 437 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/dsw/%.c
438 438 $(COMPILE.c) -o $@ $<
439 439 $(CTFCONVERT_O)
440 440
441 441 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/nsctl/%.c
442 442 $(COMPILE.c) -o $@ $<
443 443 $(CTFCONVERT_O)
444 444
445 445 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/rdc/%.c
446 446 $(COMPILE.c) -o $@ $<
447 447 $(CTFCONVERT_O)
448 448
449 449 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/sdbc/%.c
450 450 $(COMPILE.c) -o $@ $<
451 451 $(CTFCONVERT_O)
452 452
453 453 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/solaris/%.c
454 454 $(COMPILE.c) -o $@ $<
455 455 $(CTFCONVERT_O)
456 456
457 457 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/sv/%.c
458 458 $(COMPILE.c) -o $@ $<
459 459 $(CTFCONVERT_O)
460 460
461 461 $(OBJS_DIR)/%.o: $(UTSBASE)/common/avs/ns/unistat/%.c
462 462 $(COMPILE.c) -o $@ $<
463 463 $(CTFCONVERT_O)
464 464
465 465 $(OBJS_DIR)/%.o: $(UTSBASE)/common/idmap/%.c
466 466 $(COMPILE.c) -o $@ $<
467 467 $(CTFCONVERT_O)
468 468
469 469 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/%.c
470 470 $(COMPILE.c) -o $@ $<
471 471 $(CTFCONVERT_O)
472 472
473 473 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/arp/%.c
474 474 $(COMPILE.c) -o $@ $<
475 475 $(CTFCONVERT_O)
476 476
477 477 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/ip/%.c
478 478 $(COMPILE.c) -o $@ $<
479 479 $(CTFCONVERT_O)
480 480
481 481 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/ipnet/%.c
482 482 $(COMPILE.c) -o $@ $<
483 483 $(CTFCONVERT_O)
484 484
485 485 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/iptun/%.c
486 486 $(COMPILE.c) -o $@ $<
487 487 $(CTFCONVERT_O)
488 488
489 489 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/kssl/%.c
490 490 $(COMPILE.c) -o $@ $<
491 491 $(CTFCONVERT_O)
492 492
493 493 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/sctp/%.c
494 494 $(COMPILE.c) -o $@ $<
495 495 $(CTFCONVERT_O)
496 496
497 497 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/tcp/%.c
498 498 $(COMPILE.c) -o $@ $<
499 499 $(CTFCONVERT_O)
500 500
501 501 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/ilb/%.c
502 502 $(COMPILE.c) -o $@ $<
503 503 $(CTFCONVERT_O)
504 504
505 505 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/ipf/%.c
506 506 $(COMPILE.c) -o $@ $<
507 507 $(CTFCONVERT_O)
508 508
509 509 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/ipd/%.c
510 510 $(COMPILE.c) -o $@ $<
511 511 $(CTFCONVERT_O)
512 512
513 513 $(OBJS_DIR)/%.o: $(COMMONBASE)/net/patricia/%.c
514 514 $(COMPILE.c) -o $@ $<
515 515 $(CTFCONVERT_O)
516 516
517 517 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/udp/%.c
518 518 $(COMPILE.c) -o $@ $<
519 519 $(CTFCONVERT_O)
520 520
521 521 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/nca/%.c
522 522 $(COMPILE.c) -o $@ $<
523 523 $(CTFCONVERT_O)
524 524
525 525 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/sockmods/%.c
526 526 $(COMPILE.c) -o $@ $<
527 527 $(CTFCONVERT_O)
528 528
529 529 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/dlpistub/%.c
530 530 $(COMPILE.c) -o $@ $<
531 531 $(CTFCONVERT_O)
532 532
533 533 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/%.c
534 534 $(COMPILE.c) -o $@ $<
535 535 $(CTFCONVERT_O)
536 536
537 537 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/1394/%.c
538 538 $(COMPILE.c) -o $@ $<
539 539 $(CTFCONVERT_O)
540 540
541 541 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/1394/adapters/%.c
542 542 $(COMPILE.c) -o $@ $<
543 543 $(CTFCONVERT_O)
544 544
545 545 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/1394/targets/av1394/%.c
546 546 $(COMPILE.c) -o $@ $<
547 547 $(CTFCONVERT_O)
548 548
549 549 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/1394/targets/dcam1394/%.c
550 550 $(COMPILE.c) -o $@ $<
551 551 $(CTFCONVERT_O)
552 552
553 553 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/1394/targets/scsa1394/%.c
554 554 $(COMPILE.c) -o $@ $<
555 555 $(CTFCONVERT_O)
556 556
557 557 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sbp2/%.c
558 558 $(COMPILE.c) -o $@ $<
559 559 $(CTFCONVERT_O)
560 560
561 561 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/aac/%.c
562 562 $(COMPILE.c) -o $@ $<
563 563 $(CTFCONVERT_O)
564 564
565 565 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/afe/%.c
566 566 $(COMPILE.c) -o $@ $<
567 567 $(CTFCONVERT_O)
568 568
569 569 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/atge/%.c
570 570 $(COMPILE.c) -o $@ $<
571 571 $(CTFCONVERT_O)
572 572
573 573 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/arn/%.c
574 574 $(COMPILE.c) -o $@ $<
575 575 $(CTFCONVERT_O)
576 576
577 577 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ath/%.c
578 578 $(COMPILE.c) -o $@ $<
579 579 $(CTFCONVERT_O)
580 580
581 581 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/atu/%.c
582 582 $(COMPILE.c) -o $@ $<
583 583 $(CTFCONVERT_O)
584 584
585 585 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/impl/%.c
586 586 $(COMPILE.c) -o $@ $<
587 587 $(CTFCONVERT_O)
588 588
589 589 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/ac97/%.c
590 590 $(COMPILE.c) -o $@ $<
591 591 $(CTFCONVERT_O)
592 592
593 593 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audioens/%.c
594 594 $(COMPILE.c) -o $@ $<
595 595 $(CTFCONVERT_O)
596 596
597 597 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audioemu10k/%.c
598 598 $(COMPILE.c) -o $@ $<
599 599 $(CTFCONVERT_O)
600 600
601 601 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audio1575/%.c
602 602 $(COMPILE.c) -o $@ $<
603 603 $(CTFCONVERT_O)
604 604
605 605 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audio810/%.c
606 606 $(COMPILE.c) -o $@ $<
607 607 $(CTFCONVERT_O)
608 608
609 609 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiocmi/%.c
610 610 $(COMPILE.c) -o $@ $<
611 611 $(CTFCONVERT_O)
612 612
613 613 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiocmihd/%.c
614 614 $(COMPILE.c) -o $@ $<
615 615 $(CTFCONVERT_O)
616 616
617 617 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiohd/%.c
618 618 $(COMPILE.c) -o $@ $<
619 619 $(CTFCONVERT_O)
620 620
621 621 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audioixp/%.c
622 622 $(COMPILE.c) -o $@ $<
623 623 $(CTFCONVERT_O)
624 624
625 625 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiols/%.c
626 626 $(COMPILE.c) -o $@ $<
627 627 $(CTFCONVERT_O)
628 628
629 629 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiopci/%.c
630 630 $(COMPILE.c) -o $@ $<
631 631 $(CTFCONVERT_O)
632 632
633 633 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiop16x/%.c
634 634 $(COMPILE.c) -o $@ $<
635 635 $(CTFCONVERT_O)
636 636
637 637 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiosolo/%.c
638 638 $(COMPILE.c) -o $@ $<
639 639 $(CTFCONVERT_O)
640 640
641 641 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiots/%.c
642 642 $(COMPILE.c) -o $@ $<
643 643 $(CTFCONVERT_O)
644 644
645 645 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiovia823x/%.c
646 646 $(COMPILE.c) -o $@ $<
647 647 $(CTFCONVERT_O)
648 648
649 649 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/audio/drv/audiovia97/%.c
650 650 $(COMPILE.c) -o $@ $<
651 651 $(CTFCONVERT_O)
652 652
653 653 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bfe/%.c
654 654 $(COMPILE.c) -o $@ $<
655 655 $(CTFCONVERT_O)
656 656
657 657 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bge/%.c
658 658 $(COMPILE.c) -o $@ $<
659 659 $(CTFCONVERT_O)
660 660
661 661 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/blkdev/%.c
662 662 $(COMPILE.c) -o $@ $<
663 663 $(CTFCONVERT_O)
664 664
665 665 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/%.c
666 666 $(COMPILE.c) -o $@ $<
667 667 $(CTFCONVERT_O)
668 668
669 669 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/common/%.c
670 670 $(COMPILE.c) -o $@ $<
671 671 $(CTFCONVERT_O)
672 672
673 673 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/ecore/%.c
674 674 $(COMPILE.c) -o $@ $<
675 675 $(CTFCONVERT_O)
676 676
677 677 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/device/%.c
678 678 $(COMPILE.c) -o $@ $<
679 679 $(CTFCONVERT_O)
680 680
681 681 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/fw/%.c
682 682 $(COMPILE.c) -o $@ $<
683 683 $(CTFCONVERT_O)
684 684
685 685 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/l4/%.c
686 686 $(COMPILE.c) -o $@ $<
687 687 $(CTFCONVERT_O)
688 688
689 689 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/l5/%.c
690 690 $(COMPILE.c) -o $@ $<
691 691 $(CTFCONVERT_O)
692 692
693 693 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/device/%.c
694 694 $(COMPILE.c) -o $@ $<
695 695 $(CTFCONVERT_O)
696 696
697 697 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/bpf/%.c
698 698 $(COMPILE.c) -o $@ $<
699 699 $(CTFCONVERT_O)
700 700
701 701 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cardbus/%.c
702 702 $(COMPILE.c) -o $@ $<
703 703 $(CTFCONVERT_O)
704 704
705 705 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/stmf/%.c
706 706 $(COMPILE.c) -o $@ $<
707 707 $(CTFCONVERT_O)
708 708
709 709 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/fct/%.c
710 710 $(COMPILE.c) -o $@ $<
711 711 $(CTFCONVERT_O)
712 712
713 713 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/qlt/%.c
714 714 $(COMPILE.c) -o $@ $<
715 715 $(CTFCONVERT_O)
716 716
717 717 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/srpt/%.c
718 718 $(COMPILE.c) -o $@ $<
719 719 $(CTFCONVERT_O)
720 720
721 721 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/fcoet/%.c
722 722 $(COMPILE.c) -o $@ $<
723 723 $(CTFCONVERT_O)
724 724
725 725 $(OBJS_DIR)/%.o: $(COMMONBASE)/iscsit/%.c
726 726 $(COMPILE.c) -o $@ $<
727 727 $(CTFCONVERT_O)
728 728
729 729 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/iscsit/%.c
730 730 $(COMPILE.c) -o $@ $<
731 731 $(CTFCONVERT_O)
732 732
733 733 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/port/pppt/%.c
734 734 $(COMPILE.c) -o $@ $<
735 735 $(CTFCONVERT_O)
736 736
737 737 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/comstar/lu/stmf_sbd/%.c
738 738 $(COMPILE.c) -o $@ $<
739 739 $(CTFCONVERT_O)
740 740
741 741 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cpqary3/%.c
742 742 $(COMPILE.c) -o $@ $<
743 743 $(CTFCONVERT_O)
744 744
745 745 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/dld/%.c
746 746 $(COMPILE.c) -o $@ $<
747 747 $(CTFCONVERT_O)
748 748
749 749 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/dls/%.c
750 750 $(COMPILE.c) -o $@ $<
751 751 $(CTFCONVERT_O)
752 752
753 753 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/dmfe/%.c
754 754 $(COMPILE.c) -o $@ $<
755 755 $(CTFCONVERT_O)
756 756
757 757 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/drm/%.c
758 758 $(COMPILE.c) -o $@ $<
759 759 $(CTFCONVERT_O)
760 760
761 761 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/efe/%.c
762 762 $(COMPILE.c) -o $@ $<
763 763 $(CTFCONVERT_O)
764 764
765 765 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/elxl/%.c
766 766 $(COMPILE.c) -o $@ $<
767 767 $(CTFCONVERT_O)
768 768
769 769 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fcoe/%.c
770 770 $(COMPILE.c) -o $@ $<
771 771 $(CTFCONVERT_O)
772 772
773 773 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/hme/%.c
774 774 $(COMPILE.c) -o $@ $<
775 775 $(CTFCONVERT_O)
776 776
777 777 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/pciex/%.c
778 778 $(COMPILE.c) -o $@ $<
779 779 $(CTFCONVERT_O)
780 780
781 781 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/hotplug/hpcsvc/%.c
782 782 $(COMPILE.c) -o $@ $<
783 783 $(CTFCONVERT_O)
784 784
785 785 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/pciex/hotplug/%.c
786 786 $(COMPILE.c) -o $@ $<
787 787 $(CTFCONVERT_O)
788 788
789 789 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/hotplug/pcihp/%.c
790 790 $(COMPILE.c) -o $@ $<
791 791 $(CTFCONVERT_O)
792 792
793 793 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/rds/%.c
794 794 $(COMPILE.c) -o $@ $<
795 795 $(CTFCONVERT_O)
796 796
797 797 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/rdsv3/%.c
798 798 $(COMPILE.c) -o $@ $<
799 799 $(CTFCONVERT_O)
800 800
801 801 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/iser/%.c
802 802 $(COMPILE.c) -o $@ $<
803 803 $(CTFCONVERT_O)
804 804
805 805 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/ibd/%.c
806 806 $(COMPILE.c) -o $@ $<
807 807 $(CTFCONVERT_O)
808 808
809 809 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/eoib/%.c
810 810 $(COMPILE.c) -o $@ $<
811 811 $(CTFCONVERT_O)
812 812
813 813 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/of/sol_ofs/%.c
814 814 $(COMPILE.c) -o $@ $<
815 815 $(CTFCONVERT_O)
816 816
817 817 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/of/sol_ucma/%.c
818 818 $(COMPILE.c) -o $@ $<
819 819 $(CTFCONVERT_O)
820 820
821 821 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/of/sol_umad/%.c
822 822 $(COMPILE.c) -o $@ $<
823 823 $(CTFCONVERT_O)
824 824
825 825 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/of/sol_uverbs/%.c
826 826 $(COMPILE.c) -o $@ $<
827 827 $(CTFCONVERT_O)
828 828
829 829 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/sdp/%.c
830 830 $(COMPILE.c) -o $@ $<
831 831 $(CTFCONVERT_O)
832 832
833 833 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/mgt/ibcm/%.c
834 834 $(COMPILE.c) -o $@ $<
835 835 $(CTFCONVERT_O)
836 836
837 837 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/mgt/ibdm/%.c
838 838 $(COMPILE.c) -o $@ $<
839 839 $(CTFCONVERT_O)
840 840
841 841 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/mgt/ibdma/%.c
842 842 $(COMPILE.c) -o $@ $<
843 843 $(CTFCONVERT_O)
844 844
845 845 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/mgt/ibmf/%.c
846 846 $(COMPILE.c) -o $@ $<
847 847 $(CTFCONVERT_O)
848 848
849 849 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/ibnex/%.c
850 850 $(COMPILE.c) -o $@ $<
851 851 $(CTFCONVERT_O)
852 852
853 853 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/ibtl/%.c
854 854 $(COMPILE.c) -o $@ $<
855 855 $(CTFCONVERT_O)
856 856
857 857 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/adapters/tavor/%.c
858 858 $(COMPILE.c) -o $@ $<
859 859 $(CTFCONVERT_O)
860 860
861 861 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/adapters/hermon/%.c
862 862 $(COMPILE.c) -o $@ $<
863 863 $(CTFCONVERT_O)
864 864
865 865 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ib/clients/daplt/%.c
866 866 $(COMPILE.c) -o $@ $<
867 867 $(CTFCONVERT_O)
868 868
869 869 $(OBJS_DIR)/%.o: $(COMMONBASE)/iscsi/%.c
870 870 $(COMPILE.c) -o $@ $<
871 871 $(CTFCONVERT_O)
872 872
873 873 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/idm/%.c
874 874 $(COMPILE.c) -o $@ $<
875 875 $(CTFCONVERT_O)
876 876
877 877 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ipw/%.c
878 878 $(COMPILE.c) -o $@ $<
879 879 $(CTFCONVERT_O)
880 880
881 881 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/iwh/%.c
882 882 $(COMPILE.c) -o $@ $<
883 883 $(CTFCONVERT_O)
884 884
885 885 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/iwi/%.c
886 886 $(COMPILE.c) -o $@ $<
887 887 $(CTFCONVERT_O)
888 888
889 889 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/iwk/%.c
890 890 $(COMPILE.c) -o $@ $<
891 891 $(CTFCONVERT_O)
892 892
893 893 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/iwp/%.c
894 894 $(COMPILE.c) -o $@ $<
895 895 $(CTFCONVERT_O)
896 896
897 897 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/kb8042/%.c
898 898 $(COMPILE.c) -o $@ $<
899 899 $(CTFCONVERT_O)
900 900
901 901 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/kbtrans/%.c
902 902 $(COMPILE.c) -o $@ $<
903 903 $(CTFCONVERT_O)
904 904
905 905 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ksocket/%.c
906 906 $(COMPILE.c) -o $@ $<
907 907 $(CTFCONVERT_O)
908 908
909 909 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/aggr/%.c
910 910 $(COMPILE.c) -o $@ $<
911 911 $(CTFCONVERT_O)
912 912
913 913 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lp/%.c
914 914 $(COMPILE.c) -o $@ $<
915 915 $(CTFCONVERT_O)
916 916
917 917 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/hotspares/%.c
918 918 $(COMPILE.c) -o $@ $<
919 919 $(CTFCONVERT_O)
920 920
921 921 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/md/%.c
922 922 $(COMPILE.c) -o $@ $<
923 923 $(CTFCONVERT_O)
924 924
925 925 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/mirror/%.c
926 926 $(COMPILE.c) -o $@ $<
927 927 $(CTFCONVERT_O)
928 928
929 929 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/notify/%.c
930 930 $(COMPILE.c) -o $@ $<
931 931 $(CTFCONVERT_O)
932 932
933 933 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/raid/%.c
934 934 $(COMPILE.c) -o $@ $<
935 935 $(CTFCONVERT_O)
936 936
937 937 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/softpart/%.c
938 938 $(COMPILE.c) -o $@ $<
939 939 $(CTFCONVERT_O)
940 940
941 941 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/stripe/%.c
942 942 $(COMPILE.c) -o $@ $<
943 943 $(CTFCONVERT_O)
944 944
945 945 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/lvm/trans/%.c
946 946 $(COMPILE.c) -o $@ $<
947 947 $(CTFCONVERT_O)
948 948
949 949 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mac/%.c
950 950 $(COMPILE.c) -o $@ $<
951 951 $(CTFCONVERT_O)
952 952
953 953 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mac/plugins/%.c
954 954 $(COMPILE.c) -o $@ $<
955 955 $(CTFCONVERT_O)
956 956
957 957 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mega_sas/%.c
958 958 $(COMPILE.c) -o $@ $<
959 959 $(CTFCONVERT_O)
960 960
961 961 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mii/%.c
962 962 $(COMPILE.c) -o $@ $<
963 963 $(CTFCONVERT_O)
964 964
965 965 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mr_sas/%.c
966 966 $(COMPILE.c) -o $@ $<
967 967 $(CTFCONVERT_O)
968 968
969 969 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/mpt_sas/%.c
970 970 $(COMPILE.c) -o $@ $<
971 971 $(CTFCONVERT_O)
972 972
973 973 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mxfe/%.c
974 974 $(COMPILE.c) -o $@ $<
975 975 $(CTFCONVERT_O)
976 976
977 977 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mwl/%.c
978 978 $(COMPILE.c) -o $@ $<
979 979 $(CTFCONVERT_O)
980 980
981 981 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/mwl/mwl_fw/%.c
982 982 $(COMPILE.c) -o $@ $<
983 983 $(CTFCONVERT_O)
984 984
985 985 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/net80211/%.c
986 986 $(COMPILE.c) -o $@ $<
987 987 $(CTFCONVERT_O)
988 988
989 989 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/nge/%.c
990 990 $(COMPILE.c) -o $@ $<
991 991 $(CTFCONVERT_O)
992 992
993 993 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/nxge/%.c
994 994 $(COMPILE.c) -o $@ $<
995 995 $(CTFCONVERT_O)
996 996
997 997 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/nxge/npi/%.c
998 998 $(COMPILE.c) -o $@ $<
999 999 $(CTFCONVERT_O)
1000 1000
1001 1001 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/nxge/%.s
1002 1002 $(COMPILE.s) -o $@ $<
1003 1003
1004 1004 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/pci-ide/%.c
1005 1005 $(COMPILE.c) -o $@ $<
1006 1006 $(CTFCONVERT_O)
1007 1007
1008 1008 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/pcn/%.c
1009 1009 $(COMPILE.c) -o $@ $<
1010 1010 $(CTFCONVERT_O)
1011 1011
1012 1012 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ppp/sppp/%.c
1013 1013 $(COMPILE.c) -o $@ $<
1014 1014 $(CTFCONVERT_O)
1015 1015
1016 1016 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ppp/spppasyn/%.c
1017 1017 $(COMPILE.c) -o $@ $<
1018 1018 $(CTFCONVERT_O)
1019 1019
1020 1020 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ppp/sppptun/%.c
1021 1021 $(COMPILE.c) -o $@ $<
1022 1022 $(CTFCONVERT_O)
1023 1023
1024 1024 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ral/%.c
1025 1025 $(COMPILE.c) -o $@ $<
1026 1026 $(CTFCONVERT_O)
1027 1027
1028 1028 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rge/%.c
1029 1029 $(COMPILE.c) -o $@ $<
1030 1030 $(CTFCONVERT_O)
1031 1031
1032 1032 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rtls/%.c
1033 1033 $(COMPILE.c) -o $@ $<
1034 1034 $(CTFCONVERT_O)
1035 1035
1036 1036 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rsm/%.c
1037 1037 $(COMPILE.c) -o $@ $<
1038 1038 $(CTFCONVERT_O)
1039 1039
1040 1040 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rtw/%.c
1041 1041 $(COMPILE.c) -o $@ $<
1042 1042 $(CTFCONVERT_O)
1043 1043
1044 1044 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rum/%.c
1045 1045 $(COMPILE.c) -o $@ $<
1046 1046 $(CTFCONVERT_O)
1047 1047
1048 1048 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rwd/%.c
1049 1049 $(COMPILE.c) -o $@ $<
1050 1050 $(CTFCONVERT_O)
1051 1051
1052 1052 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/rwn/%.c
1053 1053 $(COMPILE.c) -o $@ $<
1054 1054 $(CTFCONVERT_O)
1055 1055
1056 1056 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sata/adapters/ahci/%.c
1057 1057 $(COMPILE.c) -o $@ $<
1058 1058 $(CTFCONVERT_O)
1059 1059
1060 1060 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sata/adapters/nv_sata/%.c
1061 1061 $(COMPILE.c) -o $@ $<
1062 1062 $(CTFCONVERT_O)
1063 1063
1064 1064 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sata/adapters/si3124/%.c
1065 1065 $(COMPILE.c) -o $@ $<
1066 1066 $(CTFCONVERT_O)
1067 1067
1068 1068 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sata/impl/%.c
1069 1069 $(COMPILE.c) -o $@ $<
1070 1070 $(CTFCONVERT_O)
1071 1071
1072 1072 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/conf/%.c
1073 1073 $(COMPILE.c) -o $@ $<
1074 1074 $(CTFCONVERT_O)
1075 1075
1076 1076 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/impl/%.c
1077 1077 $(COMPILE.c) -o $@ $<
1078 1078 $(CTFCONVERT_O)
1079 1079
1080 1080 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/targets/%.c
1081 1081 $(COMPILE.c) -o $@ $<
1082 1082 $(CTFCONVERT_O)
1083 1083
1084 1084 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/%.c
1085 1085 $(COMPILE.c) -o $@ $<
1086 1086 $(CTFCONVERT_O)
1087 1087
1088 1088 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/blk2scsa/%.c
1089 1089 $(COMPILE.c) -o $@ $<
1090 1090 $(CTFCONVERT_O)
1091 1091
1092 1092 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/scsi_vhci/%.c
1093 1093 $(COMPILE.c) -o $@ $<
1094 1094 $(CTFCONVERT_O)
1095 1095
1096 1096 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/scsi_vhci/fops/%.c
1097 1097 $(COMPILE.c) -o $@ $<
1098 1098 $(CTFCONVERT_O)
1099 1099
1100 1100 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/ulp/%.c
1101 1101 $(COMPILE.c) -o $@ $<
1102 1102 $(CTFCONVERT_O)
1103 1103
1104 1104 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/impl/%.c
1105 1105 $(COMPILE.c) -o $@ $<
1106 1106 $(CTFCONVERT_O)
1107 1107
1108 1108 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/fca/qlc/%.c
1109 1109 $(COMPILE.c) -o $@ $<
1110 1110 $(CTFCONVERT_O)
1111 1111
1112 1112 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/fca/qlge/%.c
1113 1113 $(COMPILE.c) -o $@ $<
1114 1114 $(CTFCONVERT_O)
1115 1115
1116 1116 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/fca/emlxs/%.c
1117 1117 $(COMPILE.c) -o $@ $<
1118 1118 $(CTFCONVERT_O)
1119 1119
1120 1120 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/fca/oce/%.c
1121 1121 $(COMPILE.c) -o $@ $<
1122 1122 $(CTFCONVERT_O)
1123 1123
1124 1124 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/fibre-channel/fca/fcoei/%.c
1125 1125 $(COMPILE.c) -o $@ $<
1126 1126 $(CTFCONVERT_O)
1127 1127
1128 1128 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sdcard/adapters/sdhost/%.c
1129 1129 $(COMPILE.c) -o $@ $<
1130 1130 $(CTFCONVERT_O)
1131 1131
1132 1132 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sdcard/impl/%.c
1133 1133 $(COMPILE.c) -o $@ $<
1134 1134 $(CTFCONVERT_O)
1135 1135
1136 1136 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sdcard/targets/sdcard/%.c
1137 1137 $(COMPILE.c) -o $@ $<
1138 1138 $(CTFCONVERT_O)
1139 1139
1140 1140 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/sfe/%.c
1141 1141 $(COMPILE.c) -o $@ $<
1142 1142 $(CTFCONVERT_O)
1143 1143
1144 1144 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/simnet/%.c
1145 1145 $(COMPILE.c) -o $@ $<
1146 1146 $(CTFCONVERT_O)
1147 1147
1148 1148 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/softmac/%.c
1149 1149 $(COMPILE.c) -o $@ $<
1150 1150 $(CTFCONVERT_O)
1151 1151
1152 1152 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/uath/%.c
1153 1153 $(COMPILE.c) -o $@ $<
1154 1154 $(CTFCONVERT_O)
1155 1155
1156 1156 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/uath/uath_fw/%.c
1157 1157 $(COMPILE.c) -o $@ $<
1158 1158 $(CTFCONVERT_O)
1159 1159
1160 1160 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ural/%.c
1161 1161 $(COMPILE.c) -o $@ $<
1162 1162 $(CTFCONVERT_O)
1163 1163
1164 1164 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/urtw/%.c
1165 1165 $(COMPILE.c) -o $@ $<
1166 1166 $(CTFCONVERT_O)
1167 1167
1168 1168 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/audio/usb_ac/%.c
1169 1169 $(COMPILE.c) -o $@ $<
1170 1170 $(CTFCONVERT_O)
1171 1171
1172 1172 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/audio/usb_as/%.c
1173 1173 $(COMPILE.c) -o $@ $<
1174 1174 $(CTFCONVERT_O)
1175 1175
1176 1176 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/audio/usb_ah/%.c
1177 1177 $(COMPILE.c) -o $@ $<
1178 1178 $(CTFCONVERT_O)
1179 1179
1180 1180 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbskel/%.c
1181 1181 $(COMPILE.c) -o $@ $<
1182 1182 $(CTFCONVERT_O)
1183 1183
1184 1184 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/video/usbvc/%.c
1185 1185 $(COMPILE.c) -o $@ $<
1186 1186 $(CTFCONVERT_O)
1187 1187
1188 1188 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/hid/%.c
1189 1189 $(COMPILE.c) -o $@ $<
1190 1190 $(CTFCONVERT_O)
1191 1191
1192 1192 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/hidparser/%.c
1193 1193 $(COMPILE.c) -o $@ $<
1194 1194 $(CTFCONVERT_O)
1195 1195
1196 1196 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/printer/%.c
1197 1197 $(COMPILE.c) -o $@ $<
1198 1198 $(CTFCONVERT_O)
1199 1199
1200 1200 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbkbm/%.c
1201 1201 $(COMPILE.c) -o $@ $<
1202 1202 $(CTFCONVERT_O)
1203 1203
1204 1204 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbms/%.c
1205 1205 $(COMPILE.c) -o $@ $<
1206 1206 $(CTFCONVERT_O)
1207 1207
1208 1208 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbinput/usbwcm/%.c
1209 1209 $(COMPILE.c) -o $@ $<
1210 1210 $(CTFCONVERT_O)
1211 1211
1212 1212 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/ugen/%.c
1213 1213 $(COMPILE.c) -o $@ $<
1214 1214 $(CTFCONVERT_O)
1215 1215
1216 1216 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbser/%.c
1217 1217 $(COMPILE.c) -o $@ $<
1218 1218 $(CTFCONVERT_O)
1219 1219
1220 1220 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbser/usbsacm/%.c
1221 1221 $(COMPILE.c) -o $@ $<
1222 1222 $(CTFCONVERT_O)
1223 1223
1224 1224 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbser/usbftdi/%.c
1225 1225 $(COMPILE.c) -o $@ $<
1226 1226 $(CTFCONVERT_O)
1227 1227
1228 1228 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbser/usbser_keyspan/%.c
1229 1229 $(COMPILE.c) -o $@ $<
1230 1230 $(CTFCONVERT_O)
1231 1231
1232 1232 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbser/usbsprl/%.c
1233 1233 $(COMPILE.c) -o $@ $<
1234 1234 $(CTFCONVERT_O)
1235 1235
1236 1236 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/clients/usbecm/%.c
1237 1237 $(COMPILE.c) -o $@ $<
1238 1238 $(CTFCONVERT_O)
1239 1239
1240 1240 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/hcd/openhci/%.c
1241 1241 $(COMPILE.c) -o $@ $<
1242 1242 $(CTFCONVERT_O)
1243 1243
1244 1244 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/hcd/ehci/%.c
1245 1245 $(COMPILE.c) -o $@ $<
1246 1246 $(CTFCONVERT_O)
1247 1247
1248 1248 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/hcd/uhci/%.c
1249 1249 $(COMPILE.c) -I../../common -o $@ $<
1250 1250 $(CTFCONVERT_O)
1251 1251
1252 1252 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/hubd/%.c
1253 1253 $(COMPILE.c) -o $@ $<
1254 1254 $(CTFCONVERT_O)
1255 1255
1256 1256 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/scsa2usb/%.c
1257 1257 $(COMPILE.c) -o $@ $<
1258 1258 $(CTFCONVERT_O)
1259 1259
1260 1260 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/usb_mid/%.c
1261 1261 $(COMPILE.c) -o $@ $<
1262 1262 $(CTFCONVERT_O)
1263 1263
1264 1264 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/usb_ia/%.c
1265 1265 $(COMPILE.c) -o $@ $<
1266 1266 $(CTFCONVERT_O)
1267 1267
1268 1268 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/usba/%.c
1269 1269 $(COMPILE.c) -o $@ $<
1270 1270 $(CTFCONVERT_O)
1271 1271
1272 1272 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/usb/usba10/%.c
1273 1273 $(COMPILE.c) -o $@ $<
1274 1274 $(CTFCONVERT_O)
1275 1275
1276 1276 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vuidmice/%.c
1277 1277 $(COMPILE.c) -o $@ $<
1278 1278 $(CTFCONVERT_O)
1279 1279
1280 1280 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vnic/%.c
1281 1281 $(COMPILE.c) -o $@ $<
1282 1282 $(CTFCONVERT_O)
1283 1283
1284 1284 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/wpi/%.c
1285 1285 $(COMPILE.c) -o $@ $<
1286 1286 $(CTFCONVERT_O)
1287 1287
1288 1288 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/zyd/%.c
1289 1289 $(COMPILE.c) -o $@ $<
1290 1290 $(CTFCONVERT_O)
1291 1291
1292 1292 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/chxge/com/%.c
1293 1293 $(COMPILE.c) -o $@ $<
1294 1294 $(CTFCONVERT_O)
1295 1295
1296 1296 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/chxge/%.c
1297 1297 $(COMPILE.c) -o $@ $<
1298 1298 $(CTFCONVERT_O)
1299 1299
1300 1300 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cxgbe/common/%.c
1301 1301 $(COMPILE.c) -o $@ $<
1302 1302 $(CTFCONVERT_O)
1303 1303
1304 1304 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cxgbe/shared/%.c
1305 1305 $(COMPILE.c) -o $@ $<
1306 1306 $(CTFCONVERT_O)
1307 1307
1308 1308 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cxgbe/firmware/%.c
1309 1309 $(COMPILE.c) -o $@ $<
1310 1310 $(CTFCONVERT_O)
1311 1311
1312 1312 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cxgbe/t4nex/%.c
1313 1313 $(COMPILE.c) -o $@ $<
1314 1314 $(CTFCONVERT_O)
1315 1315
1316 1316 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/cxgbe/cxgbe/%.c
1317 1317 $(COMPILE.c) -o $@ $<
1318 1318 $(CTFCONVERT_O)
1319 1319
1320 1320 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ixgb/%.c
1321 1321 $(COMPILE.c) -o $@ $<
1322 1322 $(CTFCONVERT_O)
1323 1323
1324 1324 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/xge/drv/%.c
1325 1325 $(COMPILE.c) -o $@ $<
1326 1326 $(CTFCONVERT_O)
1327 1327
1328 1328 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/xge/hal/xgehal/%.c
1329 1329 $(COMPILE.c) -o $@ $<
1330 1330 $(CTFCONVERT_O)
1331 1331
1332 1332 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/e1000api/%.c
1333 1333 $(COMPILE.c) -o $@ $<
1334 1334 $(CTFCONVERT_O)
1335 1335
1336 1336 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/e1000g/%.c
1337 1337 $(COMPILE.c) -o $@ $<
1338 1338 $(CTFCONVERT_O)
1339 1339
1340 1340 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/igb/%.c
1341 1341 $(COMPILE.c) -o $@ $<
1342 1342 $(CTFCONVERT_O)
1343 1343
1344 1344 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/iprb/%.c
1345 1345 $(COMPILE.c) -o $@ $<
1346 1346 $(CTFCONVERT_O)
1347 1347
1348 1348 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ixgbe/%.c
1349 1349 $(COMPILE.c) -o $@ $<
1350 1350 $(CTFCONVERT_O)
1351 1351
1352 1352 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/ntxn/%.c
1353 1353 $(COMPILE.c) -o $@ $<
1354 1354 $(CTFCONVERT_O)
1355 1355
1356 1356 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/myri10ge/drv/%.c
1357 1357 $(COMPILE.c) -o $@ $<
1358 1358 $(CTFCONVERT_O)
1359 1359
1360 1360 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/%.c
1361 1361 $(COMPILE.c) -o $@ $<
1362 1362 $(CTFCONVERT_O)
1363 1363
1364 1364 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/ipgpc/%.c
1365 1365 $(COMPILE.c) -o $@ $<
1366 1366 $(CTFCONVERT_O)
1367 1367
1368 1368 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/dlcosmk/%.c
1369 1369 $(COMPILE.c) -o $@ $<
1370 1370 $(CTFCONVERT_O)
1371 1371
1372 1372 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/flowacct/%.c
1373 1373 $(COMPILE.c) -o $@ $<
1374 1374 $(CTFCONVERT_O)
1375 1375
1376 1376 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/dscpmk/%.c
1377 1377 $(COMPILE.c) -o $@ $<
1378 1378 $(CTFCONVERT_O)
1379 1379
1380 1380 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ipp/meters/%.c
1381 1381 $(COMPILE.c) -o $@ $<
1382 1382 $(CTFCONVERT_O)
1383 1383
1384 1384 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kiconv/kiconv_emea/%.c
1385 1385 $(COMPILE.c) -o $@ $<
1386 1386 $(CTFCONVERT_O)
1387 1387
1388 1388 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kiconv/kiconv_ja/%.c
1389 1389 $(COMPILE.c) -o $@ $<
1390 1390 $(CTFCONVERT_O)
1391 1391
1392 1392 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kiconv/kiconv_ko/%.c
1393 1393 $(COMPILE.c) -o $@ $<
1394 1394 $(CTFCONVERT_O)
1395 1395
1396 1396 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kiconv/kiconv_sc/%.c
1397 1397 $(COMPILE.c) -o $@ $<
1398 1398 $(CTFCONVERT_O)
1399 1399
1400 1400 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kiconv/kiconv_tc/%.c
1401 1401 $(COMPILE.c) -o $@ $<
1402 1402 $(CTFCONVERT_O)
1403 1403
1404 1404 $(OBJS_DIR)/%.o: $(UTSBASE)/common/klm/%.c
1405 1405 $(COMPILE.c) -o $@ $<
1406 1406 $(CTFCONVERT_O)
1407 1407
1408 1408 $(OBJS_DIR)/%.o: $(UTSBASE)/common/kmdb/%.c
1409 1409 $(COMPILE.c) -o $@ $<
1410 1410 $(CTFCONVERT_O)
1411 1411
1412 1412 $(OBJS_DIR)/%.o: $(UTSBASE)/common/ktli/%.c
1413 1413 $(COMPILE.c) -o $@ $<
1414 1414 $(CTFCONVERT_O)
1415 1415
1416 1416 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/iscsi/%.c
1417 1417 $(COMPILE.c) -o $@ $<
1418 1418 $(CTFCONVERT_O)
1419 1419
1420 1420 $(OBJS_DIR)/%.o: $(COMMONBASE)/iscsi/%.c
1421 1421 $(COMPILE.c) -o $@ $<
1422 1422 $(CTFCONVERT_O)
1423 1423
1424 1424 $(OBJS_DIR)/%.o: $(UTSBASE)/common/inet/kifconf/%.c
1425 1425 $(COMPILE.c) -o $@ $<
1426 1426 $(CTFCONVERT_O)
1427 1427
1428 1428 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vr/%.c
1429 1429 $(COMPILE.c) -o $@ $<
1430 1430 $(CTFCONVERT_O)
1431 1431
1432 1432 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/yge/%.c
1433 1433 $(COMPILE.c) -o $@ $<
1434 1434 $(CTFCONVERT_O)
1435 1435
1436 1436 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/skd/%.c
1437 1437 $(COMPILE.c) -o $@ $<
|
↓ open down ↓ |
1437 lines elided |
↑ open up ↑ |
1438 1438 $(CTFCONVERT_O)
1439 1439
1440 1440 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/virtio/%.c
1441 1441 $(COMPILE.c) -o $@ $<
1442 1442 $(CTFCONVERT_O)
1443 1443
1444 1444 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vioblk/%.c
1445 1445 $(COMPILE.c) -o $@ $<
1446 1446 $(CTFCONVERT_O)
1447 1447
1448 +$(OBJS_DIR)/%.o: $(UTSBASE)/common/io/vioif/%.c
1449 + $(COMPILE.c) -o $@ $<
1450 + $(CTFCONVERT_O)
1448 1451 #
1449 1452 # krtld must refer to its own bzero/bcopy until the kernel is fully linked
1450 1453 #
1451 1454 $(OBJS_DIR)/bootrd.o := CPPFLAGS += -DKOBJ_OVERRIDES
1452 1455 $(OBJS_DIR)/doreloc.o := CPPFLAGS += -DKOBJ_OVERRIDES
1453 1456 $(OBJS_DIR)/kobj.o := CPPFLAGS += -DKOBJ_OVERRIDES
1454 1457 $(OBJS_DIR)/kobj_boot.o := CPPFLAGS += -DKOBJ_OVERRIDES
1455 1458 $(OBJS_DIR)/kobj_bootflags.o := CPPFLAGS += -DKOBJ_OVERRIDES
1456 1459 $(OBJS_DIR)/kobj_convrelstr.o := CPPFLAGS += -DKOBJ_OVERRIDES
1457 1460 $(OBJS_DIR)/kobj_isa.o := CPPFLAGS += -DKOBJ_OVERRIDES
1458 1461 $(OBJS_DIR)/kobj_kdi.o := CPPFLAGS += -DKOBJ_OVERRIDES
1459 1462 $(OBJS_DIR)/kobj_lm.o := CPPFLAGS += -DKOBJ_OVERRIDES
1460 1463 $(OBJS_DIR)/kobj_reloc.o := CPPFLAGS += -DKOBJ_OVERRIDES
1461 1464 $(OBJS_DIR)/kobj_stubs.o := CPPFLAGS += -DKOBJ_OVERRIDES
1462 1465 $(OBJS_DIR)/kobj_subr.o := CPPFLAGS += -DKOBJ_OVERRIDES
1463 1466
1464 1467 $(OBJS_DIR)/%.o: $(UTSBASE)/common/krtld/%.c
1465 1468 $(COMPILE.c) -o $@ $<
1466 1469 $(CTFCONVERT_O)
1467 1470
1468 1471 $(OBJS_DIR)/%.o: $(COMMONBASE)/list/%.c
1469 1472 $(COMPILE.c) -o $@ $<
1470 1473 $(CTFCONVERT_O)
1471 1474
1472 1475 $(OBJS_DIR)/%.o: $(COMMONBASE)/lvm/%.c
1473 1476 $(COMPILE.c) -o $@ $<
1474 1477 $(CTFCONVERT_O)
1475 1478
1476 1479 $(OBJS_DIR)/%.o: $(COMMONBASE)/lzma/%.c
1477 1480 $(COMPILE.c) -o $@ $<
1478 1481 $(CTFCONVERT_O)
1479 1482
1480 1483 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/md4/%.c
1481 1484 $(COMPILE.c) -o $@ $<
1482 1485 $(CTFCONVERT_O)
1483 1486
1484 1487 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/md5/%.c
1485 1488 $(COMPILE.c) -o $@ $<
1486 1489 $(CTFCONVERT_O)
1487 1490
1488 1491 $(OBJS_DIR)/%.o: $(COMMONBASE)/net/dhcp/%.c
1489 1492 $(COMPILE.c) -o $@ $<
1490 1493 $(CTFCONVERT_O)
1491 1494
1492 1495 $(OBJS_DIR)/%.o: $(COMMONBASE)/nvpair/%.c
1493 1496 $(COMPILE.c) -o $@ $<
1494 1497 $(CTFCONVERT_O)
1495 1498
1496 1499 $(OBJS_DIR)/%.o: $(UTSBASE)/common/os/%.c
1497 1500 $(COMPILE.c) -o $@ $<
1498 1501 $(CTFCONVERT_O)
1499 1502
1500 1503 $(OBJS_DIR)/%.o: $(UTSBASE)/common/pcmcia/cis/%.c
1501 1504 $(COMPILE.c) -o $@ $<
1502 1505 $(CTFCONVERT_O)
1503 1506
1504 1507 $(OBJS_DIR)/%.o: $(UTSBASE)/common/pcmcia/cs/%.c
1505 1508 $(COMPILE.c) -o $@ $<
1506 1509 $(CTFCONVERT_O)
1507 1510
1508 1511 $(OBJS_DIR)/%.o: $(UTSBASE)/common/pcmcia/nexus/%.c
1509 1512 $(COMPILE.c) -o $@ $<
1510 1513 $(CTFCONVERT_O)
1511 1514
1512 1515 $(OBJS_DIR)/%.o: $(UTSBASE)/common/pcmcia/pcs/%.c
1513 1516 $(COMPILE.c) -o $@ $<
1514 1517 $(CTFCONVERT_O)
1515 1518
1516 1519 $(OBJS_DIR)/%.o: $(UTSBASE)/common/rpc/%.c
1517 1520 $(COMPILE.c) -o $@ $<
1518 1521 $(CTFCONVERT_O)
1519 1522
1520 1523 $(OBJS_DIR)/%.o: $(UTSBASE)/common/rpc/sec/%.c
1521 1524 $(COMPILE.c) -o $@ $<
1522 1525 $(CTFCONVERT_O)
1523 1526
1524 1527 $(OBJS_DIR)/%.o: $(UTSBASE)/common/rpc/sec_gss/%.c
1525 1528 $(COMPILE.c) -o $@ $<
1526 1529 $(CTFCONVERT_O)
1527 1530
1528 1531 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/sha1/%.c
1529 1532 $(COMPILE.c) -o $@ $<
1530 1533 $(CTFCONVERT_O)
1531 1534
1532 1535 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/sha2/%.c
1533 1536 $(COMPILE.c) -o $@ $<
1534 1537 $(CTFCONVERT_O)
1535 1538
1536 1539 $(OBJS_DIR)/%.o: $(UTSBASE)/common/syscall/%.c
1537 1540 $(COMPILE.c) -o $@ $<
1538 1541 $(CTFCONVERT_O)
1539 1542
1540 1543 $(OBJS_DIR)/%.o: $(UTSBASE)/common/tnf/%.c
1541 1544 $(COMPILE.c) -o $@ $<
1542 1545 $(CTFCONVERT_O)
1543 1546
1544 1547 $(OBJS_DIR)/%.o: $(COMMONBASE)/tsol/%.c
1545 1548 $(COMPILE.c) -o $@ $<
1546 1549 $(CTFCONVERT_O)
1547 1550
1548 1551 $(OBJS_DIR)/%.o: $(COMMONBASE)/util/%.c
1549 1552 $(COMPILE.c) -o $@ $<
1550 1553 $(CTFCONVERT_O)
1551 1554
1552 1555 $(OBJS_DIR)/%.o: $(COMMONBASE)/unicode/%.c
1553 1556 $(COMPILE.c) -o $@ $<
1554 1557 $(CTFCONVERT_O)
1555 1558
1556 1559 $(OBJS_DIR)/%.o: $(UTSBASE)/common/vm/%.c
1557 1560 $(COMPILE.c) -o $@ $<
1558 1561 $(CTFCONVERT_O)
1559 1562
1560 1563 $(OBJS_DIR)/%.o: $(UTSBASE)/common/zmod/%.c
1561 1564 $(COMPILE.c) -o $@ $<
1562 1565 $(CTFCONVERT_O)
1563 1566
1564 1567 $(OBJS_DIR)/zlib_obj.o: $(ZLIB_OBJS:%=$(OBJS_DIR)/%)
1565 1568 $(LD) -r -Breduce -M$(UTSBASE)/common/zmod/mapfile -o $@ \
1566 1569 $(ZLIB_OBJS:%=$(OBJS_DIR)/%)
1567 1570 $(CTFMERGE) -t -f -L VERSION -o $@ $(ZLIB_OBJS:%=$(OBJS_DIR)/%)
1568 1571
1569 1572 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/hxge/%.c
1570 1573 $(COMPILE.c) -o $@ $<
1571 1574 $(CTFCONVERT_O)
1572 1575
1573 1576 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/tpm/%.c
1574 1577 $(COMPILE.c) -o $@ $<
1575 1578 $(CTFCONVERT_O)
1576 1579
1577 1580 $(OBJS_DIR)/%.o: $(UTSBASE)/common/io/tpm/%.s
1578 1581 $(COMPILE.s) -o $@ $<
1579 1582
1580 1583 $(OBJS_DIR)/bz2%.o: $(COMMONBASE)/bzip2/%.c
1581 1584 $(COMPILE.c) -o $@ -I$(COMMONBASE)/bzip2 $<
1582 1585 $(CTFCONVERT_O)
1583 1586
1584 1587 BZ2LINT = -erroff=%all -I$(UTSBASE)/common/bzip2
1585 1588
1586 1589 $(LINTS_DIR)/bz2%.ln: $(COMMONBASE)/bzip2/%.c
1587 1590 @($(LHEAD) $(LINT.c) -C $(LINTS_DIR)/`basename $@ .ln` $(BZ2LINT) $< $(LTAIL))
1588 1591
1589 1592 #
1590 1593 # Section 1b: Lint `objects'
1591 1594 #
1592 1595 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/aes/%.c
1593 1596 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1594 1597
1595 1598 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/arcfour/%.c
1596 1599 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1597 1600
1598 1601 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/blowfish/%.c
1599 1602 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1600 1603
1601 1604 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/ecc/%.c
1602 1605 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1603 1606
1604 1607 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/modes/%.c
1605 1608 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1606 1609
1607 1610 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/padding/%.c
1608 1611 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1609 1612
1610 1613 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/rng/%.c
1611 1614 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1612 1615
1613 1616 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/rsa/%.c
1614 1617 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1615 1618
1616 1619 $(LINTS_DIR)/%.ln: $(COMMONBASE)/bignum/%.c
1617 1620 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1618 1621
1619 1622 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/bignum/%.c
1620 1623 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1621 1624
1622 1625 $(LINTS_DIR)/%.ln: $(COMMONBASE)/mpi/%.c
1623 1626 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1624 1627
1625 1628 $(LINTS_DIR)/%.ln: $(COMMONBASE)/acl/%.c
1626 1629 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1627 1630
1628 1631 $(LINTS_DIR)/%.ln: $(COMMONBASE)/avl/%.c
1629 1632 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1630 1633
1631 1634 $(LINTS_DIR)/%.ln: $(COMMONBASE)/ucode/%.c
1632 1635 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1633 1636
1634 1637 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/brand/sn1/%.c
1635 1638 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1636 1639
1637 1640 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/brand/solaris10/%.c
1638 1641 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1639 1642
1640 1643 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/c2/%.c
1641 1644 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1642 1645
1643 1646 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/conf/%.c
1644 1647 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1645 1648
1646 1649 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/contract/%.c
1647 1650 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1648 1651
1649 1652 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/cpr/%.c
1650 1653 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1651 1654
1652 1655 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ctf/%.c
1653 1656 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1654 1657
1655 1658 $(LINTS_DIR)/%.ln: $(COMMONBASE)/ctf/%.c
1656 1659 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1657 1660
1658 1661 $(LINTS_DIR)/%.ln: $(COMMONBASE)/pci/%.c
1659 1662 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1660 1663
1661 1664 $(LINTS_DIR)/%.ln: $(COMMONBASE)/devid/%.c
1662 1665 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1663 1666
1664 1667 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/des/%.c
1665 1668 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1666 1669
1667 1670 $(LINTS_DIR)/%.ln: $(COMMONBASE)/smbios/%.c
1668 1671 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1669 1672
1670 1673 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ncall/%.c
1671 1674 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1672 1675
1673 1676 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/dsw/%.c
1674 1677 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1675 1678
1676 1679 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/nsctl/%.c
1677 1680 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1678 1681
1679 1682 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/rdc/%.c
1680 1683 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1681 1684
1682 1685 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/sdbc/%.c
1683 1686 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1684 1687
1685 1688 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/solaris/%.c
1686 1689 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1687 1690
1688 1691 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/sv/%.c
1689 1692 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1690 1693
1691 1694 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/avs/ns/unistat/%.c
1692 1695 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1693 1696
1694 1697 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/des/%.c
1695 1698 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1696 1699
1697 1700 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/crypto/api/%.c
1698 1701 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1699 1702
1700 1703 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/crypto/core/%.c
1701 1704 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1702 1705
1703 1706 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/crypto/io/%.c
1704 1707 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1705 1708
1706 1709 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/crypto/spi/%.c
1707 1710 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1708 1711
1709 1712 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/disp/%.c
1710 1713 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1711 1714
1712 1715 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/dtrace/%.c
1713 1716 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1714 1717
1715 1718 $(LINTS_DIR)/%.ln: $(COMMONBASE)/exacct/%.c
1716 1719 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1717 1720
1718 1721 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/exec/aout/%.c
1719 1722 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1720 1723
1721 1724 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/exec/elf/%.c
1722 1725 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1723 1726
1724 1727 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/exec/intp/%.c
1725 1728 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1726 1729
1727 1730 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/exec/shbin/%.c
1728 1731 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1729 1732
1730 1733 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/exec/java/%.c
1731 1734 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1732 1735
1733 1736 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/%.c
1734 1737 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1735 1738
1736 1739 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/autofs/%.c
1737 1740 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1738 1741
1739 1742 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/cachefs/%.c
1740 1743 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1741 1744
1742 1745 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/ctfs/%.c
1743 1746 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1744 1747
1745 1748 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/doorfs/%.c
1746 1749 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1747 1750
1748 1751 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/dcfs/%.c
1749 1752 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1750 1753
1751 1754 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/devfs/%.c
1752 1755 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1753 1756
1754 1757 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/dev/%.c
1755 1758 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1756 1759
1757 1760 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/fd/%.c
1758 1761 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1759 1762
1760 1763 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/fifofs/%.c
1761 1764 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1762 1765
1763 1766 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/hsfs/%.c
1764 1767 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1765 1768
1766 1769 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/lofs/%.c
1767 1770 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1768 1771
1769 1772 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/mntfs/%.c
1770 1773 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1771 1774
1772 1775 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/namefs/%.c
1773 1776 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1774 1777
1775 1778 $(LINTS_DIR)/%.ln: $(COMMONBASE)/smbsrv/%.c
1776 1779 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1777 1780
1778 1781 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/smbsrv/%.c
1779 1782 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1780 1783
1781 1784 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/nfs/%.c
1782 1785 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1783 1786
1784 1787 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/objfs/%.c
1785 1788 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1786 1789
1787 1790 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/pcfs/%.c
1788 1791 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1789 1792
1790 1793 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/portfs/%.c
1791 1794 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1792 1795
1793 1796 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/proc/%.c
1794 1797 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1795 1798
1796 1799 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/sharefs/%.c
1797 1800 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1798 1801
1799 1802 $(LINTS_DIR)/%.ln: $(COMMONBASE)/smbclnt/%.c
1800 1803 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1801 1804
1802 1805 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/smbclnt/netsmb/%.c
1803 1806 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1804 1807
1805 1808 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/smbclnt/smbfs/%.c
1806 1809 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1807 1810
1808 1811 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/sockfs/%.c
1809 1812 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1810 1813
1811 1814 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/specfs/%.c
1812 1815 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1813 1816
1814 1817 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/swapfs/%.c
1815 1818 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1816 1819
1817 1820 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/tmpfs/%.c
1818 1821 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1819 1822
1820 1823 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/udfs/%.c
1821 1824 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1822 1825
1823 1826 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/ufs/%.c
1824 1827 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1825 1828
1826 1829 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/ufs_log/%.c
1827 1830 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1828 1831
1829 1832 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vscan/%.c
1830 1833 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1831 1834
1832 1835 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/zfs/%.c
1833 1836 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1834 1837
1835 1838 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/fs/zut/%.c
1836 1839 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1837 1840
1838 1841 $(LINTS_DIR)/%.ln: $(COMMONBASE)/xattr/%.c
1839 1842 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1840 1843
1841 1844 $(LINTS_DIR)/%.ln: $(COMMONBASE)/zfs/%.c
1842 1845 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1843 1846
1844 1847 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/gssapi/%.c
1845 1848 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1846 1849
1847 1850 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/gssapi/mechs/dummy/%.c
1848 1851 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1849 1852
1850 1853 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/%.c
1851 1854 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1852 1855
1853 1856 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/%.c
1854 1857 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1855 1858
1856 1859 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/des/%.c
1857 1860 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1858 1861
1859 1862 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/dk/%.c
1860 1863 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1861 1864
1862 1865 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/os/%.c
1863 1866 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1864 1867
1865 1868 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/arcfour/%.c
1866 1869 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1867 1870
1868 1871 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/enc_provider/%.c
1869 1872 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1870 1873
1871 1874 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/hash_provider/%.c
1872 1875 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1873 1876
1874 1877 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/keyhash_provider/%.c
1875 1878 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1876 1879
1877 1880 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/raw/%.c
1878 1881 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1879 1882
1880 1883 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/crypto/old/%.c
1881 1884 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1882 1885
1883 1886 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/krb5/krb/%.c
1884 1887 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1885 1888
1886 1889 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/krb5/os/%.c
1887 1890 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1888 1891
1889 1892 $(LINTS_DIR)/%.ln: $(KMECHKRB5_BASE)/mech/%.c
1890 1893 @($(LHEAD) $(LINT.c) $(KGSSDFLAGS) $< $(LTAIL))
1891 1894
1892 1895 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/idmap/%.c
1893 1896 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1894 1897
1895 1898 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/%.c
1896 1899 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1897 1900
1898 1901 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/sockmods/%.c
1899 1902 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1900 1903
1901 1904 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/arp/%.c
1902 1905 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1903 1906
1904 1907 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/ip/%.c
1905 1908 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1906 1909
1907 1910 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/ipnet/%.c
1908 1911 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1909 1912
1910 1913 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/iptun/%.c
1911 1914 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1912 1915
1913 1916 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/ipd/%.c
1914 1917 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1915 1918
1916 1919 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/ipf/%.c
1917 1920 @($(LHEAD) $(LINT.c) $(IPFFLAGS) $< $(LTAIL))
1918 1921
1919 1922 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/kssl/%.c
1920 1923 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1921 1924
1922 1925 $(LINTS_DIR)/%.ln: $(COMMONBASE)/net/patricia/%.c
1923 1926 @($(LHEAD) $(LINT.c) $(IPFFLAGS) $< $(LTAIL))
1924 1927
1925 1928 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/udp/%.c
1926 1929 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1927 1930
1928 1931 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/sctp/%.c
1929 1932 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1930 1933
1931 1934 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/tcp/%.c
1932 1935 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1933 1936
1934 1937 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/ilb/%.c
1935 1938 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1936 1939
1937 1940 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/nca/%.c
1938 1941 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1939 1942
1940 1943 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/dlpistub/%.c
1941 1944 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1942 1945
1943 1946 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/%.c
1944 1947 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1945 1948
1946 1949 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/1394/%.c
1947 1950 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1948 1951
1949 1952 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/1394/adapters/%.c
1950 1953 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1951 1954
1952 1955 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/1394/targets/av1394/%.c
1953 1956 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1954 1957
1955 1958 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/1394/targets/dcam1394/%.c
1956 1959 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1957 1960
1958 1961 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/1394/targets/scsa1394/%.c
1959 1962 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1960 1963
1961 1964 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sbp2/%.c
1962 1965 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1963 1966
1964 1967 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/aac/%.c
1965 1968 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1966 1969
1967 1970 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/afe/%.c
1968 1971 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1969 1972
1970 1973 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/atge/%.c
1971 1974 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1972 1975
1973 1976 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/arn/%.c
1974 1977 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1975 1978
1976 1979 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ath/%.c
1977 1980 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1978 1981
1979 1982 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/atu/%.c
1980 1983 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1981 1984
1982 1985 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/impl/%.c
1983 1986 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1984 1987
1985 1988 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/ac97/%.c
1986 1989 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1987 1990
1988 1991 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audio1575/%.c
1989 1992 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1990 1993
1991 1994 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audio810/%.c
1992 1995 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1993 1996
1994 1997 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiocmi/%.c
1995 1998 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1996 1999
1997 2000 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiocmihd/%.c
1998 2001 @($(LHEAD) $(LINT.c) $< $(LTAIL))
1999 2002
2000 2003 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audioens/%.c
2001 2004 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2002 2005
2003 2006 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audioemu10k/%.c
2004 2007 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2005 2008
2006 2009 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiohd/%.c
2007 2010 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2008 2011
2009 2012 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audioixp/%.c
2010 2013 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2011 2014
2012 2015 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiols/%.c
2013 2016 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2014 2017
2015 2018 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiopci/%.c
2016 2019 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2017 2020
2018 2021 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiop16x/%.c
2019 2022 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2020 2023
2021 2024 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiosolo/%.c
2022 2025 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2023 2026
2024 2027 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiots/%.c
2025 2028 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2026 2029
2027 2030 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiovia823x/%.c
2028 2031 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2029 2032
2030 2033 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/audio/drv/audiovia97/%.c
2031 2034 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2032 2035
2033 2036 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bfe/%.c
2034 2037 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2035 2038
2036 2039 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bpf/%.c
2037 2040 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2038 2041
2039 2042 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bge/%.c
2040 2043 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2041 2044
2042 2045 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/blkdev/%.c
2043 2046 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2044 2047
2045 2048 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/%.c
2046 2049 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2047 2050
2048 2051 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/common/%.c
2049 2052 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2050 2053
2051 2054 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/ecore/%.c
2052 2055 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2053 2056
2054 2057 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/device/%.c
2055 2058 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2056 2059
2057 2060 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/fw/%.c
2058 2061 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2059 2062
2060 2063 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/l4/%.c
2061 2064 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2062 2065
2063 2066 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/l5/%.c
2064 2067 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2065 2068
2066 2069 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/bnxe/577xx/drivers/common/lm/device/%.c
2067 2070 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2068 2071
2069 2072 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cardbus/%.c
2070 2073 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2071 2074
2072 2075 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/lu/stmf_sbd/%.c
2073 2076 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2074 2077
2075 2078 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/fct/%.c
2076 2079 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2077 2080
2078 2081 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/qlt/%.c
2079 2082 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2080 2083
2081 2084 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/srpt/%.c
2082 2085 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2083 2086
2084 2087 $(LINTS_DIR)/%.ln: $(COMMONBASE)/iscsit/%.c
2085 2088 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2086 2089
2087 2090 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/fcoet/%.c
2088 2091 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2089 2092
2090 2093 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/iscsit/%.c
2091 2094 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2092 2095
2093 2096 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/port/pppt/%.c
2094 2097 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2095 2098
2096 2099 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/comstar/stmf/%.c
2097 2100 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2098 2101
2099 2102 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cpqary3/%.c
2100 2103 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2101 2104
2102 2105 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/dld/%.c
2103 2106 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2104 2107
2105 2108 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/dls/%.c
2106 2109 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2107 2110
2108 2111 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/dmfe/%.c
2109 2112 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2110 2113
2111 2114 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/drm/%.c
2112 2115 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2113 2116
2114 2117 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/efe/%.c
2115 2118 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2116 2119
2117 2120 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/elxl/%.c
2118 2121 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2119 2122
2120 2123 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fcoe/%.c
2121 2124 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2122 2125
2123 2126 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/hme/%.c
2124 2127 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2125 2128
2126 2129 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/pciex/%.c
2127 2130 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2128 2131
2129 2132 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/hotplug/hpcsvc/%.c
2130 2133 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2131 2134
2132 2135 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/pciex/hotplug/%.c
2133 2136 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2134 2137
2135 2138 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/hotplug/pcihp/%.c
2136 2139 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2137 2140
2138 2141 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/rds/%.c
2139 2142 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2140 2143
2141 2144 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/rdsv3/%.c
2142 2145 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2143 2146
2144 2147 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/iser/%.c
2145 2148 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2146 2149
2147 2150 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/ibd/%.c
2148 2151 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2149 2152
2150 2153 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/eoib/%.c
2151 2154 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2152 2155
2153 2156 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/of/sol_ofs/%.c
2154 2157 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2155 2158
2156 2159 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/of/sol_ucma/%.c
2157 2160 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2158 2161
2159 2162 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/of/sol_umad/%.c
2160 2163 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2161 2164
2162 2165 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/of/sol_uverbs/%.c
2163 2166 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2164 2167
2165 2168 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/sdp/%.c
2166 2169 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2167 2170
2168 2171 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/mgt/ibcm/%.c
2169 2172 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2170 2173
2171 2174 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/mgt/ibdm/%.c
2172 2175 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2173 2176
2174 2177 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/mgt/ibdma/%.c
2175 2178 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2176 2179
2177 2180 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/mgt/ibmf/%.c
2178 2181 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2179 2182
2180 2183 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/ibnex/%.c
2181 2184 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2182 2185
2183 2186 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/ibtl/%.c
2184 2187 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2185 2188
2186 2189 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/adapters/tavor/%.c
2187 2190 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2188 2191
2189 2192 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/adapters/hermon/%.c
2190 2193 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2191 2194
2192 2195 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ib/clients/daplt/%.c
2193 2196 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2194 2197
2195 2198 $(LINTS_DIR)/%.ln: $(COMMONBASE)/iscsi/%.c
2196 2199 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2197 2200
2198 2201 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/idm/%.c
2199 2202 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2200 2203
2201 2204 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ipw/%.c
2202 2205 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2203 2206
2204 2207 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/iwh/%.c
2205 2208 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2206 2209
2207 2210 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/iwi/%.c
2208 2211 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2209 2212
2210 2213 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/iwk/%.c
2211 2214 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2212 2215
2213 2216 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/iwp/%.c
2214 2217 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2215 2218
2216 2219 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/kb8042/%.c
2217 2220 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2218 2221
2219 2222 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/kbtrans/%.c
2220 2223 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2221 2224
2222 2225 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ksocket/%.c
2223 2226 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2224 2227
2225 2228 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/aggr/%.c
2226 2229 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2227 2230
2228 2231 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lp/%.c
2229 2232 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2230 2233
2231 2234 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/hotspares/%.c
2232 2235 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2233 2236
2234 2237 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/md/%.c
2235 2238 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2236 2239
2237 2240 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/mirror/%.c
2238 2241 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2239 2242
2240 2243 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/raid/%.c
2241 2244 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2242 2245
2243 2246 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/softpart/%.c
2244 2247 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2245 2248
2246 2249 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/stripe/%.c
2247 2250 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2248 2251
2249 2252 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/notify/%.c
2250 2253 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2251 2254
2252 2255 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/lvm/trans/%.c
2253 2256 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2254 2257
2255 2258 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mac/%.c
2256 2259 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2257 2260
2258 2261 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mac/plugins/%.c
2259 2262 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2260 2263
2261 2264 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mega_sas/%.c
2262 2265 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2263 2266
2264 2267 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mii/%.c
2265 2268 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2266 2269
2267 2270 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mr_sas/%.c
2268 2271 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2269 2272
2270 2273 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/mpt_sas/%.c
2271 2274 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2272 2275
2273 2276 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mxfe/%.c
2274 2277 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2275 2278
2276 2279 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mwl/%.c
2277 2280 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2278 2281
2279 2282 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/mwl/mwl_fw/%.c
2280 2283 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2281 2284
2282 2285 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/net80211/%.c
2283 2286 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2284 2287
2285 2288 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/nge/%.c
2286 2289 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2287 2290
2288 2291 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/nxge/%.c
2289 2292 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2290 2293
2291 2294 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/nxge/%.s
2292 2295 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2293 2296
2294 2297 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/nxge/npi/%.c
2295 2298 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2296 2299
2297 2300 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/pci-ide/%.c
2298 2301 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2299 2302
2300 2303 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/pcn/%.c
2301 2304 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2302 2305
2303 2306 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ppp/sppp/%.c
2304 2307 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2305 2308
2306 2309 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ppp/spppasyn/%.c
2307 2310 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2308 2311
2309 2312 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ppp/sppptun/%.c
2310 2313 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2311 2314
2312 2315 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ral/%.c
2313 2316 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2314 2317
2315 2318 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rge/%.c
2316 2319 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2317 2320
2318 2321 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rtls/%.c
2319 2322 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2320 2323
2321 2324 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rsm/%.c
2322 2325 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2323 2326
2324 2327 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rtw/%.c
2325 2328 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2326 2329
2327 2330 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rum/%.c
2328 2331 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2329 2332
2330 2333 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rwd/%.c
2331 2334 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2332 2335
2333 2336 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/rwn/%.c
2334 2337 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2335 2338
2336 2339 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sata/adapters/ahci/%.c
2337 2340 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2338 2341
2339 2342 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sata/adapters/nv_sata/%.c
2340 2343 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2341 2344
2342 2345 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sata/adapters/si3124/%.c
2343 2346 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2344 2347
2345 2348 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sata/impl/%.c
2346 2349 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2347 2350
2348 2351 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/%.c
2349 2352 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2350 2353
2351 2354 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/blk2scsa/%.c
2352 2355 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2353 2356
2354 2357 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/pmcs/%.c
2355 2358 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2356 2359
2357 2360 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/scsi_vhci/%.c
2358 2361 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2359 2362
2360 2363 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/scsi_vhci/fops/%.c
2361 2364 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2362 2365
2363 2366 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/ulp/%.c
2364 2367 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2365 2368
2366 2369 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/impl/%.c
2367 2370 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2368 2371
2369 2372 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/fca/qlc/%.c
2370 2373 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2371 2374
2372 2375 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/fca/qlge/%.c
2373 2376 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2374 2377
2375 2378 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/fca/emlxs/%.c
2376 2379 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2377 2380
2378 2381 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/fca/oce/%.c
2379 2382 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2380 2383
2381 2384 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/fibre-channel/fca/fcoei/%.c
2382 2385 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2383 2386
2384 2387 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/conf/%.c
2385 2388 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2386 2389
2387 2390 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/impl/%.c
2388 2391 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2389 2392
2390 2393 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/targets/%.c
2391 2394 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2392 2395
2393 2396 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sdcard/adapters/sdhost/%.c
2394 2397 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2395 2398
2396 2399 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sdcard/impl/%.c
2397 2400 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2398 2401
2399 2402 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sdcard/targets/sdcard/%.c
2400 2403 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2401 2404
2402 2405 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/sfe/%.c
2403 2406 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2404 2407
2405 2408 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/simnet/%.c
2406 2409 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2407 2410
2408 2411 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/softmac/%.c
2409 2412 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2410 2413
2411 2414 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/uath/%.c
2412 2415 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2413 2416
2414 2417 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/uath/uath_fw/%.c
2415 2418 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2416 2419
2417 2420 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ural/%.c
2418 2421 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2419 2422
2420 2423 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/urtw/%.c
2421 2424 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2422 2425
2423 2426 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/audio/usb_ac/%.c
2424 2427 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2425 2428
2426 2429 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/audio/usb_as/%.c
2427 2430 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2428 2431
2429 2432 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/audio/usb_ah/%.c
2430 2433 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2431 2434
2432 2435 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbskel/%.c
2433 2436 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2434 2437
2435 2438 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/video/usbvc/%.c
2436 2439 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2437 2440
2438 2441 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/hid/%.c
2439 2442 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2440 2443
2441 2444 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/hidparser/%.c
2442 2445 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2443 2446
2444 2447 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbkbm/%.c
2445 2448 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2446 2449
2447 2450 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbms/%.c
2448 2451 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2449 2452
2450 2453 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbinput/usbwcm/%.c
2451 2454 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2452 2455
2453 2456 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/ugen/%.c
2454 2457 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2455 2458
2456 2459 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/printer/%.c
2457 2460 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2458 2461
2459 2462 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbser/%.c
2460 2463 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2461 2464
2462 2465 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbser/usbsacm/%.c
2463 2466 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2464 2467
2465 2468 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbser/usbftdi/%.c
2466 2469 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2467 2470
2468 2471 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbser/usbser_keyspan/%.c
2469 2472 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2470 2473
2471 2474 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbser/usbsprl/%.c
2472 2475 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2473 2476
2474 2477 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/clients/usbecm/%.c
2475 2478 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2476 2479
2477 2480 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/hcd/openhci/%.c
2478 2481 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2479 2482
2480 2483 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/hcd/ehci/%.c
2481 2484 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2482 2485
2483 2486 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/hcd/uhci/%.c
2484 2487 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2485 2488
2486 2489 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/hubd/%.c
2487 2490 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2488 2491
2489 2492 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/scsa2usb/%.c
2490 2493 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2491 2494
2492 2495 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/usb_mid/%.c
2493 2496 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2494 2497
2495 2498 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/usb_ia/%.c
2496 2499 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2497 2500
2498 2501 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/usba/%.c
2499 2502 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2500 2503
2501 2504 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/usb/usba10/%.c
2502 2505 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2503 2506
2504 2507 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vuidmice/%.c
2505 2508 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2506 2509
2507 2510 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vnic/%.c
2508 2511 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2509 2512
2510 2513 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/wpi/%.c
2511 2514 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2512 2515
2513 2516 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/zyd/%.c
2514 2517 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2515 2518
2516 2519 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/chxge/com/%.c
2517 2520 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2518 2521
2519 2522 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/chxge/%.c
2520 2523 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2521 2524
2522 2525 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cxgbe/common/%.c
2523 2526 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2524 2527
2525 2528 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cxgbe/shared/%.c
2526 2529 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2527 2530
2528 2531 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cxgbe/firmware/%.c
2529 2532 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2530 2533
2531 2534 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cxgbe/t4nex/%.c
2532 2535 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2533 2536
2534 2537 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/cxgbe/cxgbe/%.c
2535 2538 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2536 2539
2537 2540 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ixgb/%.c
2538 2541 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2539 2542
2540 2543 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/xge/drv/%.c
2541 2544 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2542 2545
2543 2546 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/xge/hal/xgehal/%.c
2544 2547 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2545 2548
2546 2549 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/e1000g/%.c
2547 2550 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2548 2551
2549 2552 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/e1000api/%.c
2550 2553 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2551 2554
2552 2555 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/igb/%.c
2553 2556 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2554 2557
2555 2558 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/iprb/%.c
2556 2559 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2557 2560
2558 2561 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ixgbe/%.c
2559 2562 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2560 2563
2561 2564 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/ntxn/%.c
2562 2565 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2563 2566
2564 2567 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/myri10ge/drv/%.c
2565 2568 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2566 2569
2567 2570 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/%.c
2568 2571 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2569 2572
2570 2573 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/ipgpc/%.c
2571 2574 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2572 2575
2573 2576 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/dlcosmk/%.c
2574 2577 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2575 2578
2576 2579 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/flowacct/%.c
2577 2580 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2578 2581
2579 2582 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/dscpmk/%.c
2580 2583 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2581 2584
2582 2585 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ipp/meters/%.c
2583 2586 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2584 2587
2585 2588 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kiconv/kiconv_emea/%.c
2586 2589 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2587 2590
2588 2591 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kiconv/kiconv_ja/%.c
2589 2592 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2590 2593
2591 2594 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kiconv/kiconv_ko/%.c
2592 2595 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2593 2596
2594 2597 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kiconv/kiconv_sc/%.c
2595 2598 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2596 2599
2597 2600 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kiconv/kiconv_tc/%.c
2598 2601 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2599 2602
2600 2603 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/klm/%.c
2601 2604 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2602 2605
2603 2606 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/kmdb/%.c
2604 2607 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2605 2608
2606 2609 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/krtld/%.c
2607 2610 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2608 2611
2609 2612 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/ktli/%.c
2610 2613 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2611 2614
2612 2615 $(LINTS_DIR)/%.ln: $(COMMONBASE)/list/%.c
2613 2616 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2614 2617
2615 2618 $(LINTS_DIR)/%.ln: $(COMMONBASE)/lvm/%.c
2616 2619 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2617 2620
2618 2621 $(LINTS_DIR)/%.ln: $(COMMONBASE)/lzma/%.c
2619 2622 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2620 2623
2621 2624 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/md4/%.c
2622 2625 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2623 2626
2624 2627 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/md5/%.c
2625 2628 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2626 2629
2627 2630 $(LINTS_DIR)/%.ln: $(COMMONBASE)/net/dhcp/%.c
2628 2631 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2629 2632
2630 2633 $(LINTS_DIR)/%.ln: $(COMMONBASE)/nvpair/%.c
2631 2634 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2632 2635
2633 2636 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/os/%.c
2634 2637 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2635 2638
2636 2639 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/rpc/%.c
2637 2640 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2638 2641
2639 2642 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/pcmcia/cs/%.c
2640 2643 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2641 2644
2642 2645 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/pcmcia/cis/%.c
2643 2646 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2644 2647
2645 2648 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/pcmcia/nexus/%.c
2646 2649 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2647 2650
2648 2651 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/pcmcia/pcs/%.c
2649 2652 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2650 2653
2651 2654 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/rpc/%.c
2652 2655 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2653 2656
2654 2657 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/rpc/sec/%.c
2655 2658 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2656 2659
2657 2660 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/rpc/sec_gss/%.c
2658 2661 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2659 2662
2660 2663 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/sha1/%.c
2661 2664 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2662 2665
2663 2666 $(LINTS_DIR)/%.ln: $(COMMONBASE)/crypto/sha2/%.c
2664 2667 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2665 2668
2666 2669 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/syscall/%.c
2667 2670 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2668 2671
2669 2672 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/tnf/%.c
2670 2673 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2671 2674
2672 2675 $(LINTS_DIR)/%.ln: $(COMMONBASE)/tsol/%.c
2673 2676 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2674 2677
2675 2678 $(LINTS_DIR)/%.ln: $(COMMONBASE)/util/%.c
2676 2679 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2677 2680
2678 2681 $(LINTS_DIR)/%.ln: $(COMMONBASE)/unicode/%.c
2679 2682 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2680 2683
2681 2684 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/vm/%.c
2682 2685 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2683 2686
2684 2687 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/iscsi/%.c
2685 2688 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2686 2689
2687 2690 $(LINTS_DIR)/%.ln: $(COMMONBASE)/iscsi/%.c
2688 2691 @($(LHEAD) $(LINT.c) $< $(LTAIL))
|
↓ open down ↓ |
1231 lines elided |
↑ open up ↑ |
2689 2692
2690 2693 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/inet/kifconf/%.c
2691 2694 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2692 2695
2693 2696 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/virtio/%.c
2694 2697 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2695 2698
2696 2699 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vioblk/%.c
2697 2700 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2698 2701
2702 +$(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vioif/%.c
2703 + @($(LHEAD) $(LINT.c) $< $(LTAIL))
2704 +
2699 2705 ZMODLINTFLAGS = -erroff=E_CONSTANT_CONDITION
2700 2706
2701 2707 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/zmod/%.c
2702 2708 @($(LHEAD) $(LINT.c) $(ZMODLINTFLAGS) $< $(LTAIL))
2703 2709
2704 2710 $(LINTS_DIR)/zlib_obj.ln: $(ZLIB_OBJS:%.o=$(LINTS_DIR)/%.ln) \
2705 2711 $(UTSBASE)/common/zmod/zlib_lint.c
2706 2712 @($(LHEAD) $(LINT.c) -C $(LINTS_DIR)/zlib_obj \
2707 2713 $(UTSBASE)/common/zmod/zlib_lint.c $(LTAIL))
2708 2714
2709 2715 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/hxge/%.c
2710 2716 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2711 2717
2712 2718 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/tpm/%.c
2713 2719 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2714 2720
2715 2721 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/tpm/%.s
2716 2722 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2717 2723
2718 2724 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/vr/%.c
2719 2725 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2720 2726
2721 2727 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/yge/%.c
2722 2728 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2723 2729
2724 2730 $(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/skd/%.c
2725 2731 @($(LHEAD) $(LINT.c) $< $(LTAIL))
2726 2732
2727 2733 $(LINTS_DIR)/%.ln: $(COMMONBASE)/fsreparse/%.c
2728 2734 @($(LHEAD) $(LINT.c) $< $(LTAIL))
|
↓ open down ↓ |
20 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX