Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/fm/fmtopo/Makefile.com
+++ new/usr/src/cmd/fm/fmtopo/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, Version 1.0 only
6 6 # (the "License"). You may not use this file except in compliance
7 7 # with the License.
8 8 #
9 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 10 # or http://www.opensolaris.org/os/licensing.
11 11 # See the License for the specific language governing permissions
12 12 # and limitations under the License.
13 13 #
14 14 # When distributing Covered Code, include this CDDL HEADER in each
15 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 16 # If applicable, add the following below this CDDL HEADER, with the
↓ open down ↓ |
16 lines elided |
↑ open up ↑ |
17 17 # fields enclosed by brackets "[]" replaced with your own identifying
18 18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 19 #
20 20 # CDDL HEADER END
21 21 #
22 22
23 23 #
24 24 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
25 25 # Use is subject to license terms.
26 26 #
27 -#ident "%Z%%M% %I% %E% SMI"
27 +# Copyright (c) 2018, Joyent, Inc.
28 28
29 29 .KEEP_STATE:
30 30 .SUFFIXES:
31 31
32 32 SRCS += fmtopo.c
33 33 OBJS = $(SRCS:%.c=%.o)
34 34 LINTFILES = $(SRCS:%.c=%.ln)
35 35
36 36 PROG = fmtopo
37 37 ROOTLIBFM = $(ROOT)/usr/lib/fm
38 38 ROOTLIBFMD = $(ROOT)/usr/lib/fm/fmd
39 39 ROOTPROG = $(ROOTLIBFMD)/$(PROG)
40 40
41 41 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
42 42 CPPFLAGS += -I. -I../common
43 43 CFLAGS += $(CTF_FLAGS) $(CCVERBOSE) $(XSTRCONST)
44 44 LDLIBS += -L$(ROOT)/usr/lib/fm -ltopo -lnvpair
45 45 LDFLAGS += -R/usr/lib/fm
46 46 LINTFLAGS += -mnu
47 47
48 +# not linted
49 +SMATCH=off
50 +
48 51 .NO_PARALLEL:
49 52 .PARALLEL: $(OBJS) $(LINTFILES)
50 53
51 54 all: $(PROG)
52 55
53 56 $(PROG): $(OBJS)
54 57 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
55 58 $(CTFMERGE) -L VERSION -o $@ $(OBJS)
56 59 $(POST_PROCESS)
57 60
58 61 %.o: ../common/%.c
59 62 $(COMPILE.c) $<
60 63 $(CTFCONVERT_O)
61 64
62 65 %.o: %.c
63 66 $(COMPILE.c) $<
64 67 $(CTFCONVERT_O)
65 68
66 69 clean:
67 70 $(RM) $(OBJS) $(LINTFILES)
68 71
69 72 clobber: clean
70 73 $(RM) $(PROG)
71 74
72 75 %.ln: ../common/%.c
73 76 $(LINT.c) -c $<
74 77
75 78 %.ln: %.c
76 79 $(LINT.c) -c $<
77 80
78 81 lint: $(LINTFILES)
79 82 $(LINT) $(LINTFLAGS) $(LINTFILES)
80 83
81 84 $(ROOTLIBFMD)/%: %
82 85 $(INS.file)
83 86
84 87 install_h:
85 88
86 89 install: all $(ROOTPROG)
↓ open down ↓ |
29 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX