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 28LIBRARY = libdiskmgt.a 29VERS = .1 30OBJECTS = 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 50include ../../Makefile.lib 51 52LIBS = $(DYNLIB) $(LINTLIB) 53i386_LDLIBS = -lfdisk 54sparc_LDLIBS = 55LDLIBS += -ldevinfo -ladm -ldevid -lkstat -lsysevent \ 56 -lnvpair -lefi -lc $($(MACH)_LDLIBS) 57DYNFLAGS += -R/opt/VRTSvxvm/lib 58 59SRCDIR = ../common 60$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 61 62CFLAGS += $(CCVERBOSE) 63CERRWARN += -_gcc=-Wno-switch 64CERRWARN += -_gcc=-Wno-parentheses 65CERRWARN += -_gcc=-Wno-uninitialized 66CPPFLAGS += -D_REENTRANT -I$(SRC)/lib/libdiskmgt/common 67 68# not linted 69SMATCH=off 70 71.KEEP_STATE: 72 73all: $(LIBS) 74 75lint: lintcheck 76 77include ../../Makefile.targ 78