Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/abi/spectrans/Makefile.cmd
+++ new/usr/src/cmd/abi/spectrans/Makefile.cmd
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 2006 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 -# ident "%Z%%M% %I% %E% SMI"
26 -#
25 +# Copyright (c) 2018, Joyent, Inc.
27 26
28 27 include $(SRC)/cmd/Makefile.cmd
29 28
30 29 PROG_BIN = $(ROOTLIB)/abi/$(PROG)
31 30 .PRECIOUS: $(PROG)
32 31
33 32 U_LIB = parse
34 33 U_BASE = ../../parser
35 34 U_DIR = $(U_BASE)/$(MACH)
36 35 U_LIB_A = $(U_DIR)/lib$(U_LIB).a
37 36
38 37 CFLAGS += $(CCVERBOSE)
39 38 CPPFLAGS += -I$(U_BASE) -I..
40 39 LDFLAGS += -L$(U_DIR)
41 40 LINTFLAGS += -xsuF -errtags=yes
42 41
42 +# not linted
43 +SMATCH=off
44 +
43 45 LDLIBS += -l$(U_LIB) -lgen
44 46 LINTLIBS = -L$(U_DIR) -l$(U_LIB)
45 47
46 48 SRCS = $(OBJECTS:%.o=../%.c)
47 49
48 50 .KEEP_STATE:
49 51
50 52 all: $(PROG)
51 53
52 54 %.o: ../%.y
53 55 $(YACC.y) $<
54 56 $(COMPILE.c) -o $@ y.tab.c
55 57 $(RM) y.tab.c
56 58
57 59 %.o: ../%.c
58 60 $(COMPILE.c) -o $@ $<
59 61 $(POST_PROCESS_O)
60 62
61 63 $(PROG): $(U_LIB_A) $(OBJECTS) $(YACC_OBJS)
62 64 $(LINK.c) -o $@ $(OBJECTS) $(YACC_OBJS) $(LDLIBS)
63 65 $(POST_PROCESS)
64 66
65 67 $(U_LIB_A):
66 68 @cd $(U_DIR); pwd; $(MAKE) all
67 69
68 70 install: $(PROG_BIN)
69 71
70 72 $(PROG_BIN) := FILEMODE = 755
71 73 $(PROG_BIN): $(PROG)
72 74 $(INS.file) $(PROG)
73 75
74 76 clean:
75 77 -$(RM) $(OBJECTS) $(YACC_OBJS)
76 78
77 79 clobber: clean
78 80 -$(RM) $(PROG) $(CLOBBERFILES)
79 81
80 82 lint:
81 83 $(LINT.c) $(SRCS) $(LINTLIBS)
↓ open down ↓ |
29 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX