Print this page
10080 smatch Makefile changes for usr/src/cmd


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

  24 
  25 NETYPPROG =     rpc.yppasswdd
  26 DEFAULTFILES =  yppasswdd.dfl
  27 PROG =          $(NETYPPROG)
  28 
  29 MANIFEST = passwd.xml
  30 
  31 include ../../Makefile.cmd
  32 
  33 ROOTMANIFESTDIR = $(ROOTSVCNETWORKNIS)
  34 
  35 #installed directories
  36 RPCSVC=         $(ROOT)/usr/include/rpcsvc
  37 NETSVC =        $(ROOTLIB)/netsvc
  38 NETYP =         $(NETSVC)/yp
  39 ROOTDIRS =      $(NETSVC) $(NETYP)
  40 
  41 # include library definitions
  42 #LDLIBS +=      -lrpcsvc -lnsl -lcrypt -lintl -lgen
  43 LDLIBS +=       -lnsl -lnisdb -lc
  44 MAPFILES =      $(MAPFILE.INT) $(MAPFILE.NGB)
  45 LDFLAGS +=      $(MAPFILES:%=-M%)
  46 
  47 # Pick up includes from library
  48 CPPFLAGS += -I$(SRC)/lib/libnisdb/yptol
  49 
  50 # This file is now in the $(SRC)/head/rpcsvc directory.
  51 #HDRFILE= yppasswd.h
  52 #IHDRFILE= $(HDRFILE:%=$(RPCSVC)/%)
  53 
  54 INETYPPROG=             $(NETYPPROG:%=$(NETYP)/%)
  55 
  56 COMMONOBJ =             yppasswdxdr.o yplckpwdf.o
  57 RPCYPPASSWDDOBJ =       yppasswdd.o changepasswd.o
  58 
  59 CERRWARN +=             -_gcc=-Wno-implicit-function-declaration
  60 CERRWARN +=             -_gcc=-Wno-parentheses
  61 CERRWARN +=             -_gcc=-Wno-uninitialized
  62 



  63 #
  64 # Objects shared between all the major components
  65 #
  66 SHAREDOBJ= ../shared/utils.o ../shared/lockmap.o ../shared/ancil.o
  67 
  68 OBJS =                  $(RPCYPPASSWDDOBJ) \
  69                         $(COMMONOBJ)
  70                         # $(YPPWCONVOBJ) $(YPPASSMGMTOBJ)
  71 
  72 SRCS =                  $(OBJS:%.o=%.c)
  73 
  74 #conditional assignments
  75 $(INETSVC)   := FILEMODE=555
  76 
  77 $(ETCDFLTFILE) := FILEMODE=0444
  78 
  79 #install rules
  80 
  81 .KEEP_STATE:
  82 




   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
  23 #
  24 # Copyright (c) 2018, Joyent, Inc.
  25 
  26 NETYPPROG =     rpc.yppasswdd
  27 DEFAULTFILES =  yppasswdd.dfl
  28 PROG =          $(NETYPPROG)
  29 
  30 MANIFEST = passwd.xml
  31 
  32 include ../../Makefile.cmd
  33 
  34 ROOTMANIFESTDIR = $(ROOTSVCNETWORKNIS)
  35 
  36 #installed directories
  37 RPCSVC=         $(ROOT)/usr/include/rpcsvc
  38 NETSVC =        $(ROOTLIB)/netsvc
  39 NETYP =         $(NETSVC)/yp
  40 ROOTDIRS =      $(NETSVC) $(NETYP)
  41 
  42 # include library definitions
  43 #LDLIBS +=      -lrpcsvc -lnsl -lcrypt -lintl -lgen
  44 LDLIBS +=       -lnsl -lnisdb -lc
  45 MAPFILES =      $(MAPFILE.INT) $(MAPFILE.NGB)
  46 LDFLAGS +=      $(MAPFILES:%=-M%)
  47 
  48 # Pick up includes from library
  49 CPPFLAGS += -I$(SRC)/lib/libnisdb/yptol
  50 
  51 # This file is now in the $(SRC)/head/rpcsvc directory.
  52 #HDRFILE= yppasswd.h
  53 #IHDRFILE= $(HDRFILE:%=$(RPCSVC)/%)
  54 
  55 INETYPPROG=             $(NETYPPROG:%=$(NETYP)/%)
  56 
  57 COMMONOBJ =             yppasswdxdr.o yplckpwdf.o
  58 RPCYPPASSWDDOBJ =       yppasswdd.o changepasswd.o
  59 
  60 CERRWARN +=             -_gcc=-Wno-implicit-function-declaration
  61 CERRWARN +=             -_gcc=-Wno-parentheses
  62 CERRWARN +=             -_gcc=-Wno-uninitialized
  63 
  64 # not linted
  65 SMATCH=off
  66 
  67 #
  68 # Objects shared between all the major components
  69 #
  70 SHAREDOBJ= ../shared/utils.o ../shared/lockmap.o ../shared/ancil.o
  71 
  72 OBJS =                  $(RPCYPPASSWDDOBJ) \
  73                         $(COMMONOBJ)
  74                         # $(YPPWCONVOBJ) $(YPPASSMGMTOBJ)
  75 
  76 SRCS =                  $(OBJS:%.o=%.c)
  77 
  78 #conditional assignments
  79 $(INETSVC)   := FILEMODE=555
  80 
  81 $(ETCDFLTFILE) := FILEMODE=0444
  82 
  83 #install rules
  84 
  85 .KEEP_STATE:
  86