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