Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/nvmeadm/Makefile
+++ new/usr/src/cmd/nvmeadm/Makefile
1 1 #
2 2 # This file and its contents are supplied under the terms of the
3 3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 4 # You may only use this file in accordance with the terms of version
5 5 # 1.0 of the CDDL.
6 6 #
7 7 # A full copy of the text of the CDDL should have accompanied this
8 8 # source. A copy of the CDDL is also available via the Internet at
9 9 # http://www.illumos.org/license/CDDL.
10 10 #
11 11
12 12 #
13 13 # Copyright 2015 Nexenta Systems, Inc.
14 14 # Copyright (c) 2018, Joyent, Inc.
15 15 #
16 16
17 17
18 18 PROG= nvmeadm
19 19
20 20 OBJS= nvmeadm.o nvmeadm_dev.o nvmeadm_print.o
21 21 SRCS= $(OBJS:%.o=%.c)
↓ open down ↓ |
21 lines elided |
↑ open up ↑ |
22 22
23 23 include ../Makefile.cmd
24 24 include ../Makefile.ctf
25 25
26 26 .KEEP_STATE:
27 27
28 28 CFLAGS += $(CCVERBOSE)
29 29 LDLIBS += -ldevinfo
30 30 CSTD= $(CSTD_GNU99)
31 31
32 +# error: cannot size expression
33 +SMATCH=off
34 +
32 35 all: $(PROG)
33 36
34 37 $(PROG): $(OBJS)
35 38 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
36 39 $(POST_PROCESS)
37 40
38 41 %.o: %.c
39 42 $(COMPILE.c) $<
40 43 $(POST_PROCESS_O)
41 44
42 45 install: all $(ROOTUSRSBINPROG)
43 46
44 47 clean:
45 48 $(RM) $(OBJS) $(PROG)
46 49
47 50 lint: lint_SRCS
48 51
49 52 include ../Makefile.targ
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX