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