Deleted Added
full compact
1c1
< # $FreeBSD: head/bin/csh/Makefile 62759 2000-07-07 08:27:59Z ache $
---
> # $FreeBSD: head/bin/csh/Makefile 69415 2000-11-30 21:38:37Z ache $
19c19
< sh.set.c sh.time.c sh.h sh.char.h sh.dir.h sh.proc.h
---
> sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h
29,30c29
< SRCS+= tc.defs.c
< GENHDRS= ed.defns.h sh.err.h tc.const.h
---
> GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c
44c43
< CLEANFILES= ${GENHDRS} csh.1
---
> CLEANFILES= ${GENHDRS} gethost csh.1
48a48,56
> gethost: gethost.c sh.err.h tc.const.h sh.h
> @rm -f ${.TARGET}
> ${CC} -o gethost ${LDFLAGS} ${CFLAGS} ${TCSHDIR}/gethost.c
>
> tc.defs.c: gethost ${.CURDIR}/host.defs
> @rm -f ${.TARGET}
> @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
> ./gethost ${.CURDIR}/host.defs >> ${.TARGET}
>
62c70
< egrep 'ERR_' ${.ALLSRC} | egrep '^#define' >> ${.TARGET}
---
> grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
70c78
< ${CC} -E ${CFLAGS} ${.ALLSRC} -D_h_tc_const | egrep 'Char STR' | \
---
> ${CC} -E ${CFLAGS} ${.ALLSRC} -D_h_tc_const | grep 'Char STR' | \