Deleted Added
sdiff udiff text old ( 59432 ) new ( 59576 )
full compact
1# $FreeBSD: head/bin/csh/Makefile 59576 2000-04-23 18:08:49Z obrien $
2# @(#)Makefile 8.1 (Berkeley) 5/31/93
3#
4# C Shell with process control; VM/UNIX VAX Makefile
5# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
6#
7# To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.
8
9TCSHDIR= ${.CURDIR}/../../contrib/tcsh
10.PATH: ${TCSHDIR}
11
12PROG= csh
13SUBDIR= nls
14DFLAGS= -D_PATH_TCSHELL='"${DESTDIR}/bin/${PROG}"'
15.if defined(WANT_KANJI)
16DFLAGS+= -DWANT_KANJI
17.endif
18CFLAGS+= -I${TCSHDIR} -I${.CURDIR} -I. ${DFLAGS}
19SRCS= sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
20 sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
21 sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
22 sh.set.c sh.time.c sh.h sh.char.h sh.dir.h sh.proc.h
23SRCS+= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
24SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
25 tw.comp.c tw.color.c

--- 52 unchanged lines hidden ---