Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/awk_xpg4/Makefile
+++ new/usr/src/cmd/awk_xpg4/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, 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
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 # Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 24 # Use is subject to license terms.
25 25 #
26 26 # cmd/awk_xpg4/Makefile
27 27 #
28 28 # Copyright (c) 2018, Joyent, Inc.
29 29
30 30 # NOTE: this is nawk in usr/src/cmd/awk_xpg4 to reside as /usr/xpg4/bin/awk
31 31
32 32 PROG= awk
33 33 XPG4PROG= awk
34 34
35 35 OBJ1= awk0.o awk1.o awk2.o awk3.o awk4.o
36 36 OBJ2= awk.o
↓ open down ↓ |
36 lines elided |
↑ open up ↑ |
37 37 XPG4AWKOBJ= values-xpg4.o
38 38 OBJS= $(OBJ2) $(OBJ1) $(XPG4AWKOBJ)
39 39 SRCS= $(OBJ1:%.o=%.c)
40 40
41 41 include ../Makefile.cmd
42 42
43 43 CPPFLAGS += -D_FILE_OFFSET_BITS=64
44 44 CFLAGS += $(CCVERBOSE)
45 45 CERRWARN += -_gcc=-Wno-unused-label
46 46 CERRWARN += -_gcc=-Wno-parentheses
47 -CERRWARN += -_gcc=-Wno-uninitialized
47 +CERRWARN += $(CNOWARN_UNINIT)
48 48 YFLAGS += -d
49 49 LDLIBS += -lm
50 50 CLEANFILES= awk.c y.tab.h
51 51
52 52 # not linted
53 53 SMATCH=off
54 54
55 55 # for messaging catalog
56 56
57 57 POFILE= awk_xpg4.po
58 58 POFILES= $(OBJ1:%.o=%.po) $(OBJ2:%.o=%.po)
59 59
60 60 .KEEP_STATE:
61 61
62 62 .PARALLEL: $(OBJS)
63 63
64 64 all: $(XPG4)
65 65
66 66 $(XPG4): $(OBJS)
67 67 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
68 68 $(POST_PROCESS)
69 69
70 70 $(POFILE): $(POFILES)
71 71 $(RM) $@
72 72 cat $(POFILES) > $@
73 73 #
74 74
75 75 install: all $(ROOTXPG4PROG)
76 76
77 77 values-xpg4.o: ../../lib/crt/common/values-xpg4.c
78 78 $(COMPILE.c) -o $@ ../../lib/crt/common/values-xpg4.c
79 79
80 80 clean:
81 81 $(RM) $(OBJS) $(XPG4) $(CLEANFILES)
82 82
83 83 lint: lint_SRCS
84 84
85 85 awk.c + y.tab.h: awk.y
86 86
87 87 awk.o: awk.c y.tab.h
88 88
89 89 awk0.c: awk.c y.tab.h
90 90
91 91 awk1.c: awk.c y.tab.h
92 92
93 93 awk2.c: awk.c y.tab.h
94 94
95 95 awk3.c: awk.c y.tab.h
96 96
97 97 awk4.c: awk.c y.tab.h
98 98
99 99 include ../Makefile.targ
↓ open down ↓ |
42 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX