xref: /original-bsd/bin/csh/Makefile (revision 95a66346)
1#	@(#)Makefile	5.18 (Berkeley) 03/20/91
2#
3# C Shell with process control; VM/UNIX VAX Makefile
4# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
5#
6# To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.
7
8PROG=	csh
9CFLAGS+=-DCSH -DTELL -DVFORK -DFILEC -I${.CURDIR}
10SRCS=	alloc.c sh.c sh.char.c sh.dir.c sh.dol.c sh.err.c sh.exec.c \
11	sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
12	sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
13	sh.set.c sh.time.c vfprintf.c
14.PATH:	${.CURDIR}/../../lib/libc/stdio
15MAN1=	csh.0
16MLINKS=	csh.1 limit.1 csh.1 alias.1 csh.1 bg.1 csh.1 dirs.1 csh.1 fg.1 \
17	csh.1 foreach.1 csh.1 history.1 csh.1 jobs.1 csh.1 popd.1 \
18	csh.1 pushd.1 csh.1 rehash.1 csh.1 repeat.1 csh.1 suspend.1 \
19	csh.1 stop.1 csh.1 source.1
20
21.include <bsd.prog.mk>
22