xref: /dragonfly/bin/csh/Makefile (revision f9602a12)
1# $FreeBSD: src/bin/csh/Makefile,v 1.11.2.8 2002/02/19 00:36:40 mp Exp $
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
9WARNS?=	2
10
11TCSHDIR= ${.CURDIR}/../../contrib/tcsh-6
12CONTRIBDIR=${TCSHDIR}
13.PATH: ${TCSHDIR}
14
15PROG=	csh
16DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"'
17CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS}
18SRCS=	sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
19	sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
20	sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
21	sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h
22SRCS+=	sh.decls.h glob.c glob.h mi.termios.c dotlock.c
23SRCS+=	tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
24	tw.comp.c tw.color.c
25SRCS+=	ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
26	ed.refresh.c ed.screen.c ed.xmap.c ed.term.c ed.term.h
27SRCS+=	tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
28	tc.func.c tc.nls.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \
29	tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \
30	tc.who.c tc.h
31GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c
32SRCS+=	${GENHDRS}
33
34MLINKS= csh.1 tcsh.1
35# MLINKS for Shell built in commands for which there are no userland
36# utilities of the same name are handled with the associated manpage,
37# builtin.1 in share/man/man1/.
38
39DPADD=	${LIBTERMCAP} ${LIBCRYPT}
40LDADD=	-ltermcap -lcrypt
41
42LINKS=	${BINDIR}/csh ${BINDIR}/tcsh
43
44CLEANFILES= ${GENHDRS} gethost.nx csh.1
45
46FILESDIR= ${SHAREDIR}/examples/tcsh
47FILES= complete.tcsh
48
49CATALOGS=	et:et_EE.ISO8859-15 \
50		finnish:fi_FI.ISO8859-1 \
51		french:fr_FR.ISO8859-1 \
52		german:de_DE.ISO8859-1 \
53		greek:el_GR.ISO8859-7 \
54		italian:it_IT.ISO8859-1 \
55		ja:ja_JP.eucJP \
56		russian:ru_RU.KOI8-R \
57		spanish:es_ES.ISO8859-1 \
58		ukrainian:uk_UA.KOI8-U
59
60NLSLINKS_fi_FI.ISO8859-1= fi_FI.ISO8859-15
61NLSLINKS_fr_FR.ISO8859-1= fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
62		fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
63		fr_CH.ISO8859-15 fr_FR.ISO8859-15
64NLSLINKS_de_DE.ISO8859-1= de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
65		de_CH.ISO8859-15 de_DE.ISO8859-15
66NLSLINKS_it_IT.ISO8859-1= it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-15
67NLSLINKS_es_ES.ISO8859-1= es_ES.ISO8859-15
68
69NLSNAME= tcsh
70
71.for catalog in ${CATALOGS}
72NLS+=		${catalog:C/.*://}
73NLSSRCDIR_${catalog:C/.*://}= ${TCSHDIR}/nls/${catalog:C/:.*//}
74NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo set[0-9]*
75.endfor
76
77csh.1: tcsh.man
78	${LN} -sf ${.ALLSRC} ${.TARGET}
79
80build-tools: gethost.nx
81
82gethost.nx: gethost.c sh.err.h tc.const.h sh.h
83
84tc.defs.c: gethost.nx ${.CURDIR}/host.defs
85	@rm -f ${.TARGET}
86	@echo "/* Do not edit this file, make creates it */" > ${.TARGET}
87	./gethost.nx ${.CURDIR}/host.defs >> ${.TARGET}
88
89ed.defns.h: ed.defns.c
90	@rm -f ${.TARGET}
91	@echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
92	@echo '#ifndef _h_ed_defns' >> ${.TARGET}
93	@echo '#define _h_ed_defns' >> ${.TARGET}
94	grep '[FV]_' ${TCSHDIR}/ed.defns.c | grep '^#define' >> ${.TARGET}
95	@echo '#endif /* _h_ed_defns */' >> ${.TARGET}
96
97sh.err.h: sh.err.c
98	@rm -f ${.TARGET}
99	@echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
100	@echo '#ifndef _h_sh_err' >> ${.TARGET}
101	@echo '#define _h_sh_err' >> ${.TARGET}
102	grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
103	@echo '#endif /* _h_sh_err */' >> ${.TARGET}
104
105tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
106	@rm -f ${.TARGET}
107	@echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
108	@echo '#ifndef _h_tc_const' >> ${.TARGET}
109	@echo '#define _h_tc_const' >> ${.TARGET}
110	${CC} -E ${CFLAGS} ${.ALLSRC} -D_h_tc_const | grep 'Char STR' | \
111	    sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
112	    sort >> ${.TARGET}
113	@echo '#endif /* _h_tc_const */' >> ${.TARGET}
114
115.include <bsd.prog.mk>
116