hammer2 - Flush asynchronization, bug fixes, stabilization (2)
[dragonfly.git] / bin / csh / Makefile
blob3d8406ca687706a77db369a5a0741a5e078d13ad
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
4 # C Shell with process control; VM/UNIX VAX Makefile
5 # Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
7 # To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.
9 WARNS?= 2
11 TCSHDIR= ${.CURDIR}/../../contrib/tcsh-6
12 CONTRIBDIR=${TCSHDIR}
13 .PATH: ${TCSHDIR}
15 PROG= csh
16 DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"'
17 CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS}
18 SRCS= 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
22 SRCS+= sh.decls.h glob.c glob.h mi.termios.c dotlock.c
23 SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
24 tw.comp.c tw.color.c
25 SRCS+= 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
27 SRCS+= 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
31 GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c
32 SRCS+= ${GENHDRS}
34 MLINKS= 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/.
39 DPADD= ${LIBNCURSES} ${LIBCRYPT} ${LIBCRYPTO}
40 LDADD= -lprivate_ncurses -lcrypt -lprivate_crypto
41 LDFLAGS+= ${PRIVATELIB_LDFLAGS}
43 # XXX hmmm
44 .if defined(BOOTSTRAPPING)
45 . if ${CFLAGS:M-flto}
46 LDFLAGS+= -Wl,--allow-multiple-definition
47 . endif
48 .endif
50 LINKS= ${BINDIR}/csh ${BINDIR}/tcsh
52 CLEANFILES= ${GENHDRS} gethost.nx csh.1
54 .if !defined(NO_SHARE)
55 FILESDIR= ${SHAREDIR}/examples/tcsh
56 FILES= complete.tcsh
58 CATALOGS= et:et_EE.ISO8859-15 \
59 finnish:fi_FI.ISO8859-1 \
60 french:fr_FR.ISO8859-1 \
61 german:de_DE.ISO8859-1 \
62 greek:el_GR.ISO8859-7 \
63 italian:it_IT.ISO8859-1 \
64 ja:ja_JP.eucJP \
65 russian:ru_RU.KOI8-R \
66 spanish:es_ES.ISO8859-1 \
67 ukrainian:uk_UA.KOI8-U
69 NLSLINKS_fi_FI.ISO8859-1= fi_FI.ISO8859-15
70 NLSLINKS_fr_FR.ISO8859-1= fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
71 fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
72 fr_CH.ISO8859-15 fr_FR.ISO8859-15
73 NLSLINKS_de_DE.ISO8859-1= de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
74 de_CH.ISO8859-15 de_DE.ISO8859-15
75 NLSLINKS_it_IT.ISO8859-1= it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-15
76 NLSLINKS_es_ES.ISO8859-1= es_ES.ISO8859-15
78 NLSNAME= tcsh
80 .for catalog in ${CATALOGS}
81 NLS+= ${catalog:C/.*://}
82 NLSSRCDIR_${catalog:C/.*://}= ${TCSHDIR}/nls/${catalog:C/:.*//}
83 NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo set[0-9]*
84 .endfor
85 .endif
87 csh.1: tcsh.man
88 ${LN} -sf ${.ALLSRC} ${.TARGET}
90 build-tools: gethost.nx
92 gethost.nx: gethost.c sh.err.h tc.const.h sh.h
94 tc.defs.c: gethost.nx ${.CURDIR}/host.defs
95 @rm -f ${.TARGET}
96 @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
97 ./gethost.nx ${.CURDIR}/host.defs >> ${.TARGET}
99 ed.defns.h: ed.defns.c
100 @rm -f ${.TARGET}
101 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
102 @echo '#ifndef _h_ed_defns' >> ${.TARGET}
103 @echo '#define _h_ed_defns' >> ${.TARGET}
104 grep '[FV]_' ${TCSHDIR}/ed.defns.c | grep '^#define' >> ${.TARGET}
105 @echo '#endif /* _h_ed_defns */' >> ${.TARGET}
107 sh.err.h: sh.err.c
108 @rm -f ${.TARGET}
109 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
110 @echo '#ifndef _h_sh_err' >> ${.TARGET}
111 @echo '#define _h_sh_err' >> ${.TARGET}
112 grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
113 @echo '#endif /* _h_sh_err */' >> ${.TARGET}
115 tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
116 @rm -f ${.TARGET}
117 @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
118 @echo '#ifndef _h_tc_const' >> ${.TARGET}
119 @echo '#define _h_tc_const' >> ${.TARGET}
120 ${CC} -E ${CFLAGS} ${.ALLSRC} -D_h_tc_const | grep 'Char STR' | \
121 sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
122 sort >> ${.TARGET}
123 @echo '#endif /* _h_tc_const */' >> ${.TARGET}
125 .include <bsd.prog.mk>