Deleted Added
full compact
Makefile (148673) Makefile (155835)
1# $FreeBSD: head/bin/csh/Makefile 148673 2005-08-03 09:22:03Z phk $
1# $FreeBSD: head/bin/csh/Makefile 155835 2006-02-19 06:40:29Z ume $
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

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

65NLSLINKS_fr_FR.ISO8859-1= fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
66 fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
67 fr_CH.ISO8859-15 fr_FR.ISO8859-15
68NLSLINKS_de_DE.ISO8859-1= de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
69 de_CH.ISO8859-15 de_DE.ISO8859-15
70NLSLINKS_it_IT.ISO8859-1= it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-15
71NLSLINKS_es_ES.ISO8859-1= es_ES.ISO8859-15
72
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

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

65NLSLINKS_fr_FR.ISO8859-1= fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
66 fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
67 fr_CH.ISO8859-15 fr_FR.ISO8859-15
68NLSLINKS_de_DE.ISO8859-1= de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
69 de_CH.ISO8859-15 de_DE.ISO8859-15
70NLSLINKS_it_IT.ISO8859-1= it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-15
71NLSLINKS_es_ES.ISO8859-1= es_ES.ISO8859-15
72
73.if defined(NO_NLS_CATALOGS) || defined(RESCUE)
74CFLAGS+= -DNO_NLS_CATALOGS
75.else
76CFLAGS+= -DHAVE_ICONV
77SRCS+= iconv_stub.c
78# Folloing links can be installed from ports/shells/tcsh_nls:
79# NLSLINKS_de_DE.ISO8859-1 += de_AT.UTF-8 de_CH.UTF-8 de_DE.UTF-8
80# NLSLINKS_el_GR.ISO8859-7 = el_GR.UTF-8
81# NLSLINKS_es_ES.ISO8859-1 += es_ES.UTF-8
82# NLSLINKS_et_EE.ISO8859-15 = et_EE.UTF-8
83# NLSLINKS_fi_FI.ISO8859-1 += fi_FI.UTF-8
84# NLSLINKS_fr_FR.ISO8859-1 += fr_BE.UTF-8 fr_CA.UTF-8 fr_CH.UTF-8 fr_FR.UTF-8
85# NLSLINKS_it_IT.ISO8859-1 += it_CH.UTF-8 it_IT.UTF-8
86# NLSLINKS_ja_JP.eucJP = ja_JP.SJIS ja_JP.UTF-8
87# NLSLINKS_ru_RU.KOI8-R = ru_RU.CP1251 ru_RU.CP866 ru_RU.ISO8859-5 ru_RU.UTF-8
88# NLSLINKS_uk_UA.KOI8-U = uk_UA.ISO8859-5 uk_UA.UTF-8
89.endif
90
73NLSNAME= tcsh
74
75.for catalog in ${CATALOGS}
76NLS+= ${catalog:C/.*://}
77NLSSRCDIR_${catalog:C/.*://}= ${TCSHDIR}/nls/${catalog:C/:.*//}
91NLSNAME= tcsh
92
93.for catalog in ${CATALOGS}
94NLS+= ${catalog:C/.*://}
95NLSSRCDIR_${catalog:C/.*://}= ${TCSHDIR}/nls/${catalog:C/:.*//}
78NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo set[0-9]*
96NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo charset set[0-9]*
79.endfor
80
81csh.1: tcsh.man
82 cat ${.ALLSRC} > ${.TARGET}
83
84build-tools: gethost
85
86gethost: gethost.c sh.err.h tc.const.h sh.h

--- 35 unchanged lines hidden ---
97.endfor
98
99csh.1: tcsh.man
100 cat ${.ALLSRC} > ${.TARGET}
101
102build-tools: gethost
103
104gethost: gethost.c sh.err.h tc.const.h sh.h

--- 35 unchanged lines hidden ---