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