Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/csh/sparc/Makefile
+++ new/usr/src/cmd/csh/sparc/Makefile
1 1 # Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
2 2
3 3 # Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T
4 4 # All Rights Reserved
5 5
6 6 # Copyright (c) 1980 Regents of the University of California.
7 7 # All rights reserved. The Berkeley Software License Agreement
8 8 # specifies the terms and conditions for redistribution.
9 9
10 10 #
11 11 # C Shell with process control; VM/UNIX VAX Makefile
12 12 # Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
13 13 #
14 14
15 15 CSH_PROG = csh
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
16 16 PROG = $(CSH_PROG)
17 17
18 18 include ../../Makefile.cmd
19 19
20 20 MBCHAR = -DMBCHAR # Define this line to include multibyte input support
21 21 DEFS = -DVFORK -DFILEC -DBSD_COMP -DFIVE # No TELL when MBCHAR
22 22 CPPFLAGS= -I. $(DEFS) $(MBCHAR) $(CPPFLAGS.master)
23 23 CPPFLAGS += -I../../sh
24 24 CPPFLAGS += -D_FILE_OFFSET_BITS=64
25 25 CERRWARN += -_gcc=-Wno-implicit-function-declaration
26 -CERRWARN += -_gcc=-Wno-uninitialized
26 +CERRWARN += $(CNOWARN_UNINIT)
27 27 CERRWARN += -_gcc=-Wno-parentheses
28 28 CERRWARN += -_gcc=-Wno-implicit-int
29 29 CERRWARN += -_gcc=-Wno-unused-function
30 30 CERRWARN += -_gcc=-Wno-unused-variable
31 31 CERRWARN += -_gcc=-Wno-clobbered
32 32 CERRWARN += -_gcc=-Wno-unused-label
33 33 CERRWARN += -_gcc=-Wno-extra
34 34
35 35 LDLIBS += -lcurses
36 36
37 37 MAPFILES = ../mapfile-intf $(MAPFILE.NGB)
38 38 LDFLAGS += $(MAPFILES:%=-M%)
39 39
40 40 PFOBJS = sh_policy.o
41 41
42 42 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \
43 43 sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o \
44 44 sh.parse.o sh.proc.o sh.sem.o sh.set.o sh.time.o
45 45
46 46 COMMONOBJS= printf.o sh.char.o sh.dir.o sh.dol.o sh.err.o \
47 47 sh.exec.o sh.exp.o sh.file.o sh.func.o sh.glob.o sh.hist.o sh.init.o \
48 48 sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o \
49 49 sh.time.o sh.tchar.o sh.tconst.o sh.o \
50 50 wait3.o
51 51
52 52 LOCALOBJS= signal.o
53 53
54 54 COMMONSRCS= $(COMMONOBJS:%.o=../%.c)
55 55
56 56 .KEEP_STATE:
57 57
58 58 .PARALLEL: $(COMMONOBJS) $(LOCALOBJS)
59 59
60 60 all: $(PROG)
61 61
62 62 # build rule for common source above
63 63 %.o: ../%.c
64 64 $(COMPILE.c) $<
65 65 $(POST_PROCESS_O)
66 66
67 67 %.o: ../../sh/%.c
68 68 $(COMPILE.c) $<
69 69 $(POST_PROCESS_O)
70 70
71 71 $(CSH_PROG): $(COMMONOBJS) $(LOCALOBJS) $(MAPFILES)
72 72 $(LINK.c) $(COMMONOBJS) $(LOCALOBJS) -o $@ $(LDLIBS)
73 73 $(POST_PROCESS)
74 74
75 75 $(HDDEP): ../sh.tconst.h
76 76
77 77 install: all $(ROOTBINPROG) $(ROOTPROG)
78 78
79 79 lint: ../sh.tconst.h
80 80 $(LINT.c) $(COMMONSRCS) signal.c $(LDLIBS)
81 81
82 82 clean:
83 83 $(RM) $(LOCALOBJS) $(COMMONOBJS)
84 84
85 85 clobber: clean
86 86 $(RM) $(PROG)
↓ open down ↓ |
50 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX