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