1# $FreeBSD$ 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 26SRCS+= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \ 27 ed.refresh.c ed.screen.c ed.xmap.c ed.term.c ed.term.h 28SRCS+= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \ 29 tc.func.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \ 30 tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \ 31 tc.who.c tc.h 32SRCS+= tc.defs.c 33GENHDRS= ed.defns.h sh.err.h tc.const.h 34SRCS+= ${GENHDRS} 35 36MAN1= csh.1 37MLINKS= csh.1 tcsh.1 38# MLINKS for Shell built in commands for which there are no userland 39# utilities of the same name are handled with the associated manpage, 40# builtin.1 in share/man/man1/. 41 42DPADD= ${LIBNCURSES} ${LIBCRYPT} 43LDADD= -lncurses -lcrypt 44 45LINKS= ${BINDIR}/csh ${BINDIR}/tcsh 46 47CLEANFILES= ${GENHDRS} csh.1 48 49csh.1: tcsh.man 50 ln -sf ${.ALLSRC} ${.TARGET} 51 52ed.defns.h: ed.defns.c 53 @rm -f ${.TARGET} 54 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET} 55 @echo '#ifndef _h_ed_defns' >> ${.TARGET} 56 @echo '#define _h_ed_defns' >> ${.TARGET} 57 grep '[FV]_' ${TCSHDIR}/ed.defns.c | grep '^#define' >> ${.TARGET} 58 @echo '#endif /* _h_ed_defns */' >> ${.TARGET} 59 60sh.err.h: sh.err.c 61 @rm -f ${.TARGET} 62 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET} 63 @echo '#ifndef _h_sh_err' >> ${.TARGET} 64 @echo '#define _h_sh_err' >> ${.TARGET} 65 egrep 'ERR_' ${.ALLSRC} | egrep '^#define' >> ${.TARGET} 66 @echo '#endif /* _h_sh_err */' >> ${.TARGET} 67 68tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h 69 @rm -f ${.TARGET} 70 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET} 71 @echo '#ifndef _h_tc_const' >> ${.TARGET} 72 @echo '#define _h_tc_const' >> ${.TARGET} 73 ${CC} -E ${CFLAGS} ${.ALLSRC} -D_h_tc_const | egrep 'Char STR' | \ 74 sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \ 75 sort >> ${.TARGET} 76 @echo '#endif /* _h_tc_const */' >> ${.TARGET} 77 78.include <bsd.prog.mk> 79