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