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