Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/tar/Makefile
+++ new/usr/src/cmd/tar/Makefile
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 #
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
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 # Copyright (c) 1988, 2010, Oracle and/or its affiliates. All rights reserved.
23 +# Copyright (c) 2018, Joyent, Inc.
23 24 #
24 25
25 26 PROG= tar
26 27 DEFAULTFILES= tar.dfl
27 28 OBJS1= tar.o
28 29 OBJS= $(OBJS1) getresponse.o
29 30 SRCS= $(OBJS1:%.o=%.c) $(SRC)/common/util/getresponse.c
30 31
31 32 include ../Makefile.cmd
32 33
33 34 CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I $(SRC)/common/util
34 35 DCFILE= $(PROG).dc
35 36
36 37 LINTFLAGS += -u
37 38 LDLIBS += -lsec -lcmdutils -lnvpair -ltsol
38 39
39 40 CFLAGS += $(CCVERBOSE)
40 41 CERRWARN += -_gcc=-Wno-uninitialized
41 42
43 +# not linted
44 +SMATCH=off
45 +
42 46 CPPFLAGS += -DEUC
43 47
44 48 ROOTSYMLINK= $(ROOTPROG)
45 49
46 50 XGETFLAGS += -a -x tar.xcl
47 51
48 52 .KEEP_STATE:
49 53
50 54 all: $(PROG)
51 55
52 56 install: all $(ROOTUSRSBINPROG) $(ROOTETCDEFAULTFILES) $(ROOTSYMLINK)
53 57 -$(RM) -r $(ROOTETCPROG)
54 58 -$(SYMLINK) ../usr/sbin/$(PROG) $(ROOTETCPROG)
55 59
56 60 $(ROOTSYMLINK):
57 61 $(RM) $@; $(SYMLINK) ../sbin/$(PROG) $@
58 62
59 63 $(PROG): $(OBJS)
60 64 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
61 65 $(POST_PROCESS)
62 66
63 67 %.o: $(SRC)/common/util/%.c
64 68 $(COMPILE.c) $(OUTPUT_OPTION) $<
65 69 $(POST_PROCESS_O)
66 70
67 71 clean:
68 72 $(RM) $(OBJS)
69 73
70 74 lint: lint_SRCS
71 75
72 76 $(DCFILE):
73 77 $(RM) messages.po
74 78 $(XGETTEXT) -c TRANSLATION_NOTE -t $(PROG).c
75 79 $(SED) -e '/^domain/d' messages.po > $@
76 80 $(RM) messages.po
77 81
78 82 include ../Makefile.targ
↓ open down ↓ |
27 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX