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


   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #


  25 
  26 SRCS =          account.c anlwrk.c bnuconvert.c callers.c               \
  27                 chremdir.c cntrl.c conn.c cpmv.c ct.c                   \
  28                 cu.c dial.c dio.c dkbreak.c                             \
  29                 dkdial.c dkerr.c dkminor.c dtnamer.c eio.c              \
  30                 expfile.c fio.c gename.c getargs.c getopt.c getprm.c    \
  31                 getpwinfo.c gio.c gnamef.c gnxseq.c grades.c            \
  32                 gtcfile.c gwd.c imsg.c in.uucpd.c interface.c limits.c  \
  33                 line.c logent.c mailst.c perfstat.c                     \
  34                 permission.c pk0.c pk1.c pkdefs.c security.c            \
  35                 setmode.c shio.c statlog.c stoa.c strpbrk.c     \
  36                 strsave.c sysfiles.c systat.c ulockf.c unknown.c        \
  37                 utility.c uucheck.c uucico.c uucleanup.c uucp.c         \
  38                 uucpdefs.c uucpname.c uudecode.c uuencode.c             \
  39                 uuglist.c uuname.c uusched.c uustat.c uux.c             \
  40                 uuxqt.c versys.c xio.c xqt.c
  41 
  42 CERRWARN        += -_gcc=-Wno-parentheses
  43 CERRWARN        += -_gcc=-Wno-char-subscripts
  44 CERRWARN        += -_gcc=-Wno-unused-variable
  45 CERRWARN        += -_gcc=-Wno-uninitialized
  46 CERRWARN        += -_gcc=-Wno-extra
  47 CERRWARN        += -_gcc=-Wno-implicit-function-declaration
  48 



  49 TLILIB =        -lnsl -lsocket
  50 PAMLIB =        -lpam
  51 
  52 # use this if you don't have strpbrk/getopt in libc
  53 # STRPBRK =     strpbrk.o
  54 # GETOPT =      getopt.o
  55 
  56 PROTOCOLOBJS =  dio.o eio.o gio.o xio.o fio.o
  57 
  58 OTHEROBJS =     utility.o cpmv.o expfile.o gename.o getpwinfo.o \
  59                 ulockf.o xqt.o logent.o gnamef.o systat.o       \
  60                 sysfiles.o strsave.o $(GETOPT)
  61 
  62 uucp \
  63 uucp.cat :=     POBJS = uucpdefs.o uucp.o gwd.o permission.o getargs.o  \
  64                         getprm.o uucpname.o versys.o gtcfile.o grades.o \
  65                         $(STRPBRK) chremdir.o mailst.o $(OTHEROBJS)
  66 
  67 uux \
  68 uux.cat :=      POBJS = uucpdefs.o uux.o mailst.o gwd.o permission.o    \




   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 # Copyright (c) 2018, Joyent, Inc.
  26 #
  27 
  28 SRCS =          account.c anlwrk.c bnuconvert.c callers.c               \
  29                 chremdir.c cntrl.c conn.c cpmv.c ct.c                   \
  30                 cu.c dial.c dio.c dkbreak.c                             \
  31                 dkdial.c dkerr.c dkminor.c dtnamer.c eio.c              \
  32                 expfile.c fio.c gename.c getargs.c getopt.c getprm.c    \
  33                 getpwinfo.c gio.c gnamef.c gnxseq.c grades.c            \
  34                 gtcfile.c gwd.c imsg.c in.uucpd.c interface.c limits.c  \
  35                 line.c logent.c mailst.c perfstat.c                     \
  36                 permission.c pk0.c pk1.c pkdefs.c security.c            \
  37                 setmode.c shio.c statlog.c stoa.c strpbrk.c     \
  38                 strsave.c sysfiles.c systat.c ulockf.c unknown.c        \
  39                 utility.c uucheck.c uucico.c uucleanup.c uucp.c         \
  40                 uucpdefs.c uucpname.c uudecode.c uuencode.c             \
  41                 uuglist.c uuname.c uusched.c uustat.c uux.c             \
  42                 uuxqt.c versys.c xio.c xqt.c
  43 
  44 CERRWARN        += -_gcc=-Wno-parentheses
  45 CERRWARN        += -_gcc=-Wno-char-subscripts
  46 CERRWARN        += -_gcc=-Wno-unused-variable
  47 CERRWARN        += -_gcc=-Wno-uninitialized
  48 CERRWARN        += -_gcc=-Wno-extra
  49 CERRWARN        += -_gcc=-Wno-implicit-function-declaration
  50 
  51 # "parse error: parsing (arg (9223372034707292160-0,2-s32max) == 2)"
  52 SMATCH          = off
  53 
  54 TLILIB =        -lnsl -lsocket
  55 PAMLIB =        -lpam
  56 
  57 # use this if you don't have strpbrk/getopt in libc
  58 # STRPBRK =     strpbrk.o
  59 # GETOPT =      getopt.o
  60 
  61 PROTOCOLOBJS =  dio.o eio.o gio.o xio.o fio.o
  62 
  63 OTHEROBJS =     utility.o cpmv.o expfile.o gename.o getpwinfo.o \
  64                 ulockf.o xqt.o logent.o gnamef.o systat.o       \
  65                 sysfiles.o strsave.o $(GETOPT)
  66 
  67 uucp \
  68 uucp.cat :=     POBJS = uucpdefs.o uucp.o gwd.o permission.o getargs.o  \
  69                         getprm.o uucpname.o versys.o gtcfile.o grades.o \
  70                         $(STRPBRK) chremdir.o mailst.o $(OTHEROBJS)
  71 
  72 uux \
  73 uux.cat :=      POBJS = uucpdefs.o uux.o mailst.o gwd.o permission.o    \