Deleted Added
full compact
Makefile (117423) Makefile (126173)
1# $FreeBSD: head/bin/csh/Makefile 117423 2003-07-11 05:24:32Z kan $
1# $FreeBSD: head/bin/csh/Makefile 126173 2004-02-23 20:05:14Z johan $
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
13.if defined(RESCUE)
14DFLAGS= -D_PATH_TCSHELL='"/rescue/${PROG}"'
15.else
16DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"'
17.endif
18CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS}
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
13.if defined(RESCUE)
14DFLAGS= -D_PATH_TCSHELL='"/rescue/${PROG}"'
15.else
16DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"'
17.endif
18CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS}
19WARNS= 0
19WARNS?= 0
20SRCS= sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
21 sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
22 sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
23 sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h
24SRCS+= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
25SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
26 tw.comp.c tw.color.c
27SRCS+= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \

--- 92 unchanged lines hidden ---
20SRCS= sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
21 sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
22 sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
23 sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h
24SRCS+= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
25SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
26 tw.comp.c tw.color.c
27SRCS+= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \

--- 92 unchanged lines hidden ---