1 #
   2 # CDDL HEADER START
   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  24 # Use is subject to license terms.
  25 # Copyright 2016 Nexenta Systems, Inc.
  26 # Copyright (c) 2018, Joyent, Inc.
  27 
  28 LIBRARY =       libdiskmgt.a
  29 VERS =          .1
  30 OBJECTS =       alias.o \
  31                 assoc_types.o \
  32                 bus.o \
  33                 cache.o \
  34                 controller.o \
  35                 drive.o \
  36                 entry.o \
  37                 events.o \
  38                 findevs.o \
  39                 inuse_dump.o \
  40                 inuse_fs.o \
  41                 inuse_lu.o \
  42                 inuse_mnt.o \
  43                 inuse_vxvm.o \
  44                 inuse_zpool.o \
  45                 media.o \
  46                 partition.o \
  47                 path.o \
  48                 slice.o
  49 
  50 include ../../Makefile.lib
  51 
  52 LIBS =          $(DYNLIB) $(LINTLIB)
  53 i386_LDLIBS =   -lfdisk
  54 sparc_LDLIBS =
  55 LDLIBS +=       -ldevinfo -ladm -ldevid -lkstat -lsysevent \
  56                 -lnvpair -lefi -lc $($(MACH)_LDLIBS)
  57 DYNFLAGS +=     -R/opt/VRTSvxvm/lib
  58 
  59 SRCDIR =        ../common
  60 $(LINTLIB) :=   SRCS = $(SRCDIR)/$(LINTSRC)
  61 
  62 CFLAGS +=       $(CCVERBOSE)
  63 CERRWARN +=     -_gcc=-Wno-switch
  64 CERRWARN +=     -_gcc=-Wno-parentheses
  65 CERRWARN +=     -_gcc=-Wno-uninitialized
  66 CPPFLAGS +=     -D_REENTRANT -I$(SRC)/lib/libdiskmgt/common
  67 
  68 # not linted
  69 SMATCH=off
  70 
  71 .KEEP_STATE:
  72 
  73 all: $(LIBS)
  74 
  75 lint: lintcheck
  76 
  77 include ../../Makefile.targ