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