Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/troff/troff.d/Makefile
+++ new/usr/src/cmd/troff/troff.d/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
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 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 25 # cmd/troff/troff.d/Makefile
26 26 #
27 27 # Copyright (c) 2019, Joyent, Inc.
28 28
29 29 include ../../Makefile.cmd
30 30
31 31 PROG = troff ta makedev
32 32
33 33 SUBDIRS = tmac.d
34 34
35 35 TAOBJS = draw.o ta.o
36 36 MAKEDEVOBJS = makedev.o
37 37 TROFFOBJS = t10.o t6.o
38 38 COMMONOBJS = hytab.o n1.o n2.o n3.o n4.o n5.o \
39 39 n7.o n8.o n9.o ni.o nii.o suftab.o
40 40
↓ open down ↓ |
40 lines elided |
↑ open up ↑ |
41 41 SRCS = $(TAOBJS:%.o=%.c) $(MAKEDEVOBJS:%.o=%.c) \
42 42 $(TROFFOBJS:%.o=%.c) $(COMMONOBJS:%.o=../%.c)
43 43
44 44 TXTS = README maketables troff.sh
45 45
46 46 CPPFLAGS = -DUSG -DINCORE -I. -I.. $(CPPFLAGS.master)
47 47
48 48 CERRWARN += -_gcc=-Wno-implicit-function-declaration
49 49 CERRWARN += -_gcc=-Wno-unused-variable
50 50 CERRWARN += -_gcc=-Wno-parentheses
51 -CERRWARN += -_gcc=-Wno-uninitialized
51 +CERRWARN += $(CNOWARN_UNINIT)
52 52 CERRWARN += -_gcc=-Wno-extra
53 53
54 54 # "parse error: parsing (i (9223372034707292160-96) >= 65)"
55 55 SMATCH = off
56 56
57 57 #
58 58 # For message catalog
59 59 #
60 60 POFILES= $(TROFFOBJS:%.o=%.po) $(COMMONOBJS:%.o=../%.po)
61 61 POFILE= troff.d.po
62 62
63 63 # conditional assignments
64 64
65 65 all := TARGET= all
66 66 install := TARGET= install
67 67 clean := TARGET= clean
68 68 clobber := TARGET= clobber
69 69 lint := TARGET= lint
70 70 strip := TARGET= strip
71 71
72 72 troff:= POBJS= $(COMMONOBJS) $(TROFFOBJS)
73 73 ta:= POBJS= $(TAOBJS)
74 74 makedev:= POBJS= $(MAKEDEVOBJS)
75 75
76 76 ta:= LDLIBS += -lm
77 77 troff:= LDLIBS += -lmapmalloc
78 78
79 79 # build rule for common source above
80 80 %.o: ../%.c
81 81 $(COMPILE.c) $<
82 82
83 83 .KEEP_STATE:
84 84
85 85 .PARALLEL: $(COMMONOBJS) $(TROFFOBJS) $(TAOBJS) $(MAKEDEVOBJS)
86 86
87 87 all : $(PROG) $(TXTS) $(SUBDIRS)
88 88
89 89 $(PROG) : $$(POBJS)
90 90 $(LINK.c) -o $@ $(POBJS) $(LDLIBS)
91 91 $(POST_PROCESS)
92 92
93 93 install: $(PROG) $(ROOTPROG) $(SUBDIRS)
94 94
95 95 clean: $(SUBDIRS)
96 96 $(RM) $(TAOBJS) $(MAKEDEVOBJS) $(TROFFOBJS) $(COMMONOBJS)
97 97
98 98 catalog: $(POFILE)
99 99
100 100 $(POFILE): $(POFILES)
101 101 $(RM) $@
102 102 cat $(POFILES) > $@
103 103
104 104
105 105 strip :
106 106 $(STRIP $(PROG)
107 107
108 108 lint : lint_SRCS
109 109
110 110 include ../../Makefile.targ
111 111
112 112 # additional dependency for clobber which is defined in Makefile.targ
113 113 clobber: $(SUBDIRS)
114 114
115 115 $(SUBDIRS) : FRC
116 116 @cd $@; pwd; $(MAKE) $(TARGET)
117 117
118 118 FRC:
↓ open down ↓ |
57 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX