Deleted Added
full compact
Makefile (297250) Makefile (297997)
1# $FreeBSD: head/bin/csh/Makefile 297250 2016-03-24 21:48:13Z bdrewery $
1# $FreeBSD: head/bin/csh/Makefile 297997 2016-04-14 21:06:10Z bdrewery $
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
9.include <src.opts.mk>

--- 94 unchanged lines hidden (view full) ---

104NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo charset set[0-9]*
105.endfor
106
107csh.1: tcsh.man
108 cat ${.ALLSRC} > ${.TARGET}
109
110build-tools: gethost
111
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
9.include <src.opts.mk>

--- 94 unchanged lines hidden (view full) ---

104NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo charset set[0-9]*
105.endfor
106
107csh.1: tcsh.man
108 cat ${.ALLSRC} > ${.TARGET}
109
110build-tools: gethost
111
112gethost: gethost.c sh.err.h tc.const.h sh.h
112gethost: gethost.c sh.err.h tc.const.h sh.h ${BUILD_TOOLS_META}
113 @rm -f ${.TARGET}
114 ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \
115 ${TCSHDIR}/gethost.c
116
117tc.defs.c: gethost ${TCSHDIR}/host.defs
118 @rm -f ${.TARGET}
119 @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
120 ./gethost ${TCSHDIR}/host.defs >> ${.TARGET}

--- 29 unchanged lines hidden ---
113 @rm -f ${.TARGET}
114 ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \
115 ${TCSHDIR}/gethost.c
116
117tc.defs.c: gethost ${TCSHDIR}/host.defs
118 @rm -f ${.TARGET}
119 @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
120 ./gethost ${TCSHDIR}/host.defs >> ${.TARGET}

--- 29 unchanged lines hidden ---