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