]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/csh/Makefile
MFC r315948:
[FreeBSD/stable/10.git] / bin / csh / Makefile
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
9 .include <bsd.own.mk>
10
11 TCSHDIR= ${.CURDIR}/../../contrib/tcsh
12 .PATH: ${TCSHDIR}
13
14 PROG=   csh
15 .if defined(RESCUE)
16 DFLAGS= -D_PATH_TCSHELL='"/rescue/${PROG}"'
17 .else
18 DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"'
19 .endif
20 CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS}
21 WARNS?= 1
22 SRCS=   sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
23         sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
24         sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
25         sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h
26 SRCS+=  sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
27 SRCS+=  tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
28         tw.comp.c tw.color.c
29 SRCS+=  ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
30         ed.refresh.c ed.screen.c ed.xmap.c ed.term.c ed.term.h
31 SRCS+=  tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
32         tc.func.c tc.nls.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \
33         tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \
34         tc.who.c tc.h
35 SRCS+=  dotlock.c dotlock.h
36 GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c
37 SRCS+=  ${GENHDRS}
38
39 MLINKS= csh.1 tcsh.1
40 # MLINKS for Shell built in commands for which there are no userland
41 # utilities of the same name are handled with the associated manpage,
42 # builtin.1 in share/man/man1/.
43
44 DPADD=  ${LIBTERMCAP} ${LIBCRYPT}
45 LDADD=  -ltermcap -lcrypt
46
47 LINKS=  ${BINDIR}/csh ${BINDIR}/tcsh
48
49 CLEANFILES= ${GENHDRS} gethost csh.1
50
51 .if ${MK_EXAMPLES} != "no"
52 FILESDIR= ${SHAREDIR}/examples/tcsh
53 FILES= complete.tcsh csh-mode.el
54 .endif
55
56 CATALOGS=       et:et_EE.ISO8859-15 \
57                 finnish:fi_FI.ISO8859-1 \
58                 french:fr_FR.ISO8859-1 \
59                 german:de_DE.ISO8859-1 \
60                 greek:el_GR.ISO8859-7 \
61                 italian:it_IT.ISO8859-1 \
62                 ja:ja_JP.eucJP \
63                 russian:ru_RU.KOI8-R \
64                 spanish:es_ES.ISO8859-1 \
65                 ukrainian:uk_UA.KOI8-U
66
67 NLSLINKS_fi_FI.ISO8859-1= fi_FI.ISO8859-15
68 NLSLINKS_fr_FR.ISO8859-1= fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
69                 fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
70                 fr_CH.ISO8859-15 fr_FR.ISO8859-15
71 NLSLINKS_de_DE.ISO8859-1= de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
72                 de_CH.ISO8859-15 de_DE.ISO8859-15
73 NLSLINKS_it_IT.ISO8859-1= it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-15
74 NLSLINKS_es_ES.ISO8859-1= es_ES.ISO8859-15
75
76 .if ${MK_NLS_CATALOGS} == "no" || defined(RESCUE)
77 CFLAGS+= -DNO_NLS_CATALOGS
78 .else
79 CFLAGS+= -DHAVE_ICONV
80 .if ${MK_ICONV} != "no"
81 NLSLINKS_de_DE.ISO8859-1 += de_AT.UTF-8 de_CH.UTF-8 de_DE.UTF-8
82 NLSLINKS_el_GR.ISO8859-7 = el_GR.UTF-8
83 NLSLINKS_es_ES.ISO8859-1 += es_ES.UTF-8
84 NLSLINKS_et_EE.ISO8859-15 = et_EE.UTF-8
85 NLSLINKS_fi_FI.ISO8859-1 += fi_FI.UTF-8
86 NLSLINKS_fr_FR.ISO8859-1 += fr_BE.UTF-8 fr_CA.UTF-8 fr_CH.UTF-8 fr_FR.UTF-8
87 NLSLINKS_it_IT.ISO8859-1 += it_CH.UTF-8 it_IT.UTF-8
88 NLSLINKS_ja_JP.eucJP = ja_JP.SJIS ja_JP.UTF-8
89 NLSLINKS_ru_RU.KOI8-R = ru_RU.CP1251 ru_RU.CP866 ru_RU.ISO8859-5 ru_RU.UTF-8
90 NLSLINKS_uk_UA.KOI8-U = uk_UA.ISO8859-5 uk_UA.UTF-8
91 .else
92 # Above links can be installed from ports/shells/tcsh_nls
93
94 GENHDRS+= iconv.h
95 SRCS+=  iconv_stub.c
96
97 iconv.h: ${.CURDIR}/iconv_stub.h
98         cp ${.CURDIR}/iconv_stub.h ${.TARGET}
99 .endif
100 .endif
101
102 NLSNAME= tcsh
103
104 .for catalog in ${CATALOGS}
105 NLS+=           ${catalog:C/.*://}
106 NLSSRCDIR_${catalog:C/.*://}= ${TCSHDIR}/nls/${catalog:C/:.*//}
107 NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo charset set[0-9]*
108 .endfor
109
110 csh.1: tcsh.man
111         cat ${.ALLSRC} > ${.TARGET}
112
113 build-tools: gethost
114
115 gethost: gethost.c sh.err.h tc.const.h sh.h
116         @rm -f ${.TARGET}
117         ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \
118             ${TCSHDIR}/gethost.c
119
120 tc.defs.c: gethost ${TCSHDIR}/host.defs
121         @rm -f ${.TARGET}
122         @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
123         ./gethost ${TCSHDIR}/host.defs >> ${.TARGET}
124
125 ed.defns.h: ed.defns.c
126         @rm -f ${.TARGET}
127         @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
128         @echo '#ifndef _h_ed_defns' >> ${.TARGET}
129         @echo '#define _h_ed_defns' >> ${.TARGET}
130         grep '[FV]_' ${TCSHDIR}/ed.defns.c | grep '^#define' >> ${.TARGET}
131         @echo '#endif /* _h_ed_defns */' >> ${.TARGET}
132
133 sh.err.h: sh.err.c
134         @rm -f ${.TARGET}
135         @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
136         @echo '#ifndef _h_sh_err' >> ${.TARGET}
137         @echo '#define _h_sh_err' >> ${.TARGET}
138         grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
139         @echo '#endif /* _h_sh_err */' >> ${.TARGET}
140
141 tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
142         @rm -f ${.TARGET}
143         @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
144         @echo '#ifndef _h_tc_const' >> ${.TARGET}
145         @echo '#define _h_tc_const' >> ${.TARGET}
146         ${CC} -E ${CFLAGS:C/-DHAVE_ICONV//} ${.ALLSRC} -D_h_tc_const | \
147             grep 'Char STR' | \
148             sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
149             sort >> ${.TARGET}
150         @echo '#endif /* _h_tc_const */' >> ${.TARGET}
151
152 .include <bsd.prog.mk>