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