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