Print this page
10063 basic support for smatch
10153 checkpaths shouldn't check packaging exceptions


   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
  24 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
  25 # Copyright 2016 Toomas Soome <tsoome@me.com>
  26 # Copyright (c) 2016, Chris Fraire <cfraire@me.com>.

  27 #
  28 
  29 include ../Makefile.master
  30 


  31 # Bootstrap problem: 'cw' must be built before anything else can be built.
  32 # 'install.bin' should be built next, being the 'install' target dependency
  33 # for everything else.
  34 #
  35 # Because of somewhat cyclic dependency between them, both cw and install.bin
  36 # override the way we install binaries in their Makefiles.
  37 BOOT_SUBDIRS= \


  38         cw \
  39         .WAIT \
  40         install.bin \
  41         .WAIT \
  42         ctf
  43 
  44 COMMON_SUBDIRS= \
  45         codereview \
  46         codesign \
  47         cscope-fast \
  48         env \
  49         findunref \
  50         lintdump \
  51         make \
  52         makesoftcore \
  53         ndrgen \
  54         onbld \
  55         protocmp \
  56         protolist \
  57         scripts




   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
  24 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
  25 # Copyright 2016 Toomas Soome <tsoome@me.com>
  26 # Copyright (c) 2016, Chris Fraire <cfraire@me.com>.
  27 # Copyright (c) 2018, Joyent, Inc.
  28 #
  29 
  30 include ../Makefile.master
  31 
  32 SMATCH_1 = smatch
  33 
  34 # Bootstrap problem: 'cw' must be built before anything else can be built.
  35 # 'install.bin' should be built next, being the 'install' target dependency
  36 # for everything else.
  37 #
  38 # Because of somewhat cyclic dependency between them, both cw and install.bin
  39 # override the way we install binaries in their Makefiles.
  40 BOOT_SUBDIRS= \
  41         $(SMATCH_$(ENABLE_SMATCH)) \
  42         .WAIT \
  43         cw \
  44         .WAIT \
  45         install.bin \
  46         .WAIT \
  47         ctf
  48 
  49 COMMON_SUBDIRS= \
  50         codereview \
  51         codesign \
  52         cscope-fast \
  53         env \
  54         findunref \
  55         lintdump \
  56         make \
  57         makesoftcore \
  58         ndrgen \
  59         onbld \
  60         protocmp \
  61         protolist \
  62         scripts