Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/ctf/ctfmerge/Makefile.com
+++ new/usr/src/tools/ctf/ctfmerge/Makefile.com
1 1 #
2 2 # This file and its contents are supplied under the terms of the
3 3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 4 # You may only use this file in accordance with the terms of version
5 5 # 1.0 of the CDDL.
6 6 #
7 7 # A full copy of the text of the CDDL should have accompanied this
8 8 # source. A copy of the CDDL is also available via the Internet at
9 9 # http://www.illumos.org/license/CDDL.
10 10 #
11 11
12 12 PROG = ctfmerge
13 13 SRCS = ctfmerge.c
14 14
15 15 include ../../Makefile.ctf
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
16 16
17 17 CFLAGS += $(CCVERBOSE)
18 18 LDLIBS += -lctf -lelf
19 19
20 20 LDFLAGS += \
21 21 -L$(ROOTONBLDLIBMACH) \
22 22 '-R$$ORIGIN/../../lib/$(MACH)' \
23 23
24 24 CPPFLAGS += -include ../../common/ctf_headers.h
25 25 CERRWARN += -_gcc=-Wno-unused-variable
26 -CERRWARN += -_gcc=-Wno-uninitialized
26 +CERRWARN += $(CNOWARN_UNINIT)
27 27
28 28 OBJS = $(SRCS:%.c=%.o)
29 29
30 30 all: $(PROG)
31 31
32 32 $(PROG): $(OBJS)
33 33 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
34 34 $(POST_PROCESS)
35 35
36 36 %.o: $(SRC)/cmd/ctfmerge/%.c
37 37 $(COMPILE.c) $<
38 38
39 39 $(ROOTONBLDMACHPROG): $(PROG)
40 40
41 41 install: $(ROOTONBLDMACHPROG)
42 42
43 43 clean:
44 44 $(RM) $(OBJS) $(LINTFILES)
45 45
46 46 include $(SRC)/tools/Makefile.targ
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX