Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/svc/svccfg/Makefile
+++ new/usr/src/cmd/svc/svccfg/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 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
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 (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24 -# Copyright 2017 Joyent, Inc.
24 +# Copyright (c) 2018, Joyent, Inc.
25 25 #
26 26
27 27 MYPROG = svccfg
28 28 PROG = $(MYPROG)
29 29
30 30 SRCS = svccfg_main.c \
31 31 svccfg_engine.c \
32 32 svccfg_internal.c \
33 33 svccfg_libscf.c \
34 34 svccfg_tmpl.c \
35 35 svccfg_xml.c \
36 36 svccfg_help.c
37 37
38 38 LNTS = $(SRCS:%.c=%.ln) \
39 39 manifest_find.ln \
40 40 manifest_hash.ln
41 41
42 42 MYOBJS = $(SRCS:%.c=%.o) \
43 43 svccfg_grammar.o \
44 44 svccfg_lex.o \
45 45 manifest_find.o \
46 46 manifest_hash.o \
47 47 notify_params.o
48 48 OBJS = $(MYOBJS)
49 49
50 50 POFILES = $(SRCS:%.c=%.po) \
51 51 svccfg_grammar.po \
52 52 svccfg_lex.po \
53 53 ../common/manifest_find.po \
54 54 ../common/manifest_hash.po
55 55
56 56 include ../../Makefile.cmd
57 57 include ../../Makefile.ctf
58 58
59 59 POFILE = $(PROG)_all.po
60 60
61 61 NATIVE_BUILD=$(POUND_SIGN)
62 62 $(NATIVE_BUILD)NOT_NATIVE=$(POUND_SIGN)
63 63
64 64 $(NATIVE_BUILD)PROG = $(MYPROG:%=%-native)
65 65 $(NATIVE_BUILD)OBJS = $(MYOBJS:%.o=%-native.o)
66 66
67 67 # svccfg has a name clash with main() and libl.so.1. However, svccfg must
68 68 # still export a number of "yy*" (libl) interfaces. Reduce all other symbols
69 69 # to local scope.
70 70 MAPFILES += $(MAPFILE.LEX) $(MAPFILE.NGB)
71 71 MAPOPTS = $(MAPFILES:%=-M%)
72 72
73 73 MYCPPFLAGS = -I ../common -I$(ADJUNCT_PROTO)/usr/include/libxml2
↓ open down ↓ |
39 lines elided |
↑ open up ↑ |
74 74 CPPFLAGS += $(MYCPPFLAGS)
75 75 LDFLAGS += $(MAPOPTS)
76 76
77 77 CERRWARN += -_gcc=-Wno-unused-label
78 78 CERRWARN += -_gcc=-Wno-implicit-function-declaration
79 79 CERRWARN += -_gcc=-Wno-switch
80 80 CERRWARN += -_gcc=-Wno-uninitialized
81 81 CERRWARN += -_gcc=-Wno-unused-variable
82 82 CERRWARN += -_gcc=-Wno-parentheses
83 83
84 +# not linted
85 +SMATCH=off
86 +
84 87 LFLAGS = -t
85 88 YFLAGS = -d
86 89
87 90 CLOBBERFILES += svccfg_lex.c svccfg_grammar.c svccfg_grammar.h \
88 91 $(MYPROG:%=%-native)
89 92
90 93 SVCCFG_EXTRA_LIBS = -lxml2 -lscf -ll -luutil -lumem -lmd5 -lnvpair
91 94 $(NOT_NATIVE)SVCCFG_EXTRA_LIBS += -ltecla
92 95
93 96 LIBSCF = $(SRC)/lib/libscf
94 97 LIBTECLA = $(SRC)/lib/libtecla # just for the header
95 98 LIBUUTIL = $(SRC)/lib/libuutil
96 99
97 100 debug := COPTFLAG = -g
98 101
99 102 lint := LINTFLAGS = -mux
100 103 lint := SVCCFG_EXTRA_LIBS = -lscf -ll -luutil -lumem -lmd5 -lnvpair
101 104
102 105 LDLIBS += $(SVCCFG_EXTRA_LIBS)
103 106
104 107 $(NATIVE_BUILD)CC = $(NATIVECC)
105 108 $(NATIVE_BUILD)LD = $(NATIVELD)
106 109 $(NATIVE_BUILD)CFLAGS = $(NATIVE_CFLAGS)
107 110 $(NATIVE_BUILD)CPPFLAGS = \
108 111 -DNATIVE_BUILD \
109 112 $(MYCPPFLAGS) \
110 113 -I$(LIBSCF)/inc \
111 114 -I$(LIBTECLA) \
112 115 -I$(LIBUUTIL)/common
113 116 $(NATIVE_BUILD)LDFLAGS =
114 117 $(NATIVE_BUILD)LDLIBS = \
115 118 -L$(LIBUUTIL)/native -R $(LIBUUTIL)/native \
116 119 -L$(LIBSCF)/native -R $(LIBSCF)/native \
117 120 -L$(ADJUNCT_PROTO)/usr/lib -R$(ADJUNCT_PROTO)/usr/lib \
118 121 $(SVCCFG_EXTRA_LIBS)
119 122
120 123 svccfg_lex.o svccfg_grammar.o := CCVERBOSE =
121 124
122 125 svccfg_help.po := XGETFLAGS = -a
123 126
124 127 .KEEP_STATE:
125 128 .PARALLEL: $(OBJS) $(LNTS)
126 129
127 130 all debug: $(PROG)
128 131
129 132 native: FRC
130 133 @cd $(LIBUUTIL)/native; pwd; $(MAKE) $(MFLAGS) install
131 134 @cd $(LIBSCF)/native; pwd; $(MAKE) $(MFLAGS) install
132 135 @NATIVE_BUILD= $(MAKE) $(MFLAGS) all
133 136
134 137 $(PROG): $(OBJS) $(MAPFILES)
135 138 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
136 139 $(POST_PROCESS)
137 140
138 141 $(POFILES): svccfg_grammar.h
139 142
140 143 $(POFILE): $(POFILES)
141 144 cat $(POFILES) > $(POFILE)
142 145
143 146 install: all $(ROOTUSRSBINPROG)
144 147
145 148 svccfg_lex.c: svccfg.l svccfg_grammar.h
146 149 $(LEX) $(LFLAGS) svccfg.l > $@
147 150
148 151 svccfg_help.o: svccfg_grammar.h
149 152 svccfg_help-native.o: svccfg_grammar.h
150 153
151 154 svccfg_grammar.h svccfg_grammar.c: svccfg.y
152 155 $(YACC) $(YFLAGS) svccfg.y
153 156 @$(MV) y.tab.h svccfg_grammar.h
154 157 @$(MV) y.tab.c svccfg_grammar.c
155 158
156 159 clean: FRC
157 160 $(RM) $(MYOBJS) $(MYOBJS:%.o=%-native.o) $(LNTS)
158 161
159 162 lint: $(LNTS)
160 163 $(LINT.c) $(LINTFLAGS) $(LNTS) $(LDLIBS)
161 164
162 165 %-native.o: %.c
163 166 $(COMPILE.c) -o $@ $<
164 167 $(POST_PROCESS_O)
165 168
166 169 %-native.o: ../common/%.c
167 170 $(COMPILE.c) -o $@ $<
168 171 $(POST_PROCESS_O)
169 172
170 173 %.o: ../common/%.c
171 174 $(COMPILE.c) $(OUTPUT_OPTION) $<
172 175 $(POST_PROCESS_O)
173 176
174 177 %.ln: ../common/%.c
175 178 $(LINT.c) $(OUTPUT_OPTION) -c $<
176 179
177 180 include ../../Makefile.targ
178 181
179 182 FRC:
↓ open down ↓ |
86 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX