Print this page
10149 make latencytop smatch clean
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/latencytop/Makefile.com
+++ new/usr/src/cmd/latencytop/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.
↓ open down ↓ |
14 lines elided |
↑ open up ↑ |
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) 2008-2009, Intel Corporation.
23 23 # All Rights Reserved.
24 24 #
25 +# Copyright (c) 2018, Joyent, Inc.
25 26
26 27 PROG = latencytop
27 28 OBJS = latencytop.o display.o dwrapper.o klog.o stat.o table.o util.o
28 29 SRCS = $(OBJS:%.o=../common/%.c)
29 30
30 31 include ../../Makefile.cmd
31 32
32 33 CFLAGS += $(CCVERBOSE)
33 34 CFLAGS64 += $(CCVERBOSE)
34 35
35 36 CERRWARN += -_gcc=-Wno-uninitialized
36 37
38 +SMOFF += all_func_returns
39 +
37 40 CPPFLAGS += -DEMBED_CONFIGS -I$(ADJUNCT_PROTO)/usr/include/glib-2.0 \
38 41 -I$(ADJUNCT_PROTO)/usr/lib/glib-2.0/include
39 42 CSTD = $(CSTD_GNU99)
40 43 LDLIBS += -lcurses -ldtrace
41 44 all install := LDLIBS += -lglib-2.0
42 45
43 46 LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
44 47 LINTFLAGS += -erroff=E_FUNC_RET_ALWAYS_IGNOR2
45 48 LINTFLAGS += -erroff=E_FUNC_RET_MAYBE_IGNORED2
46 49 LINTFLAGS64 += -erroff=E_NAME_USED_NOT_DEF2
47 50 LINTFLAGS64 += -erroff=E_FUNC_RET_ALWAYS_IGNOR2
48 51 LINTFLAGS64 += -erroff=E_FUNC_RET_MAYBE_IGNORED2
49 52
50 53 FILEMODE = 0555
51 54
52 55 ELFWRAP = elfwrap
53 56 WRAPOBJ = latencytop_wrap.o
54 57
55 58 CLEANFILES += $(OBJS) $(WRAPOBJ) ./latencytop_d ./latencytop_trans
56 59
57 60 .KEEP_STATE:
58 61
59 62 all: $(PROG)
60 63
61 64 install: $(SUBDIRS)
62 65 -$(RM) $(ROOTPROG)
63 66 -$(LN) $(ISAEXEC) $(ROOTPROG)
64 67
65 68 $(PROG): $(OBJS) $(WRAPOBJ)
66 69 $(LINK.c) -o $@ $(OBJS) $(WRAPOBJ) $(LDLIBS)
67 70 $(POST_PROCESS)
68 71
69 72 $(WRAPOBJ): latencytop_d latencytop_trans
70 73 $(ELFWRAP) $(WRAPOPT) -o $(WRAPOBJ) latencytop_d latencytop_trans
71 74
72 75 latencytop_d:
73 76 cp ../common/latencytop.d ./latencytop_d
74 77
75 78 latencytop_trans:
76 79 cp ../common/latencytop.trans ./latencytop_trans
77 80
78 81 clean:
79 82 $(RM) $(CLEANFILES)
80 83
81 84 lint: lint_SRCS
82 85
83 86 %.o: ../common/%.c
84 87 $(COMPILE.c) $<
85 88
86 89 include ../../Makefile.targ
↓ open down ↓ |
40 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX