Deleted Added
sdiff udiff text old ( 277273 ) new ( 295204 )
full compact
1# $FreeBSD: head/bin/csh/Makefile 295204 2016-02-03 11:44:43Z 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
9.include <src.opts.mk>

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

46
47CLEANFILES= ${GENHDRS} gethost csh.1
48
49.if ${MK_EXAMPLES} != "no"
50FILESDIR= ${SHAREDIR}/examples/tcsh
51FILES= complete.tcsh csh-mode.el
52.endif
53
54CATALOGS= et:et_EE.UTF-8 \
55 finnish:fi_FI.UTF-8 \
56 french:fr_FR.UTF-8 \
57 german:de_DE.UTF-8 \
58 greek:el_GR.UTF-8 \
59 italian:it_IT.UTF-8 \
60 ja:ja_JP.UTF-8 \
61 russian:ru_RU.UTF-8 \
62 spanish:es_ES.UTF-8 \
63 ukrainian:uk_UA.UTF-8
64
65NLSLINKS_de_DE.UTF-8 = de_AT.UTF-8 de_CH.UTF-8 de_DE.UTF-8
66NLSLINKS_fr_FR.UTF-8 = fr_BE.UTF-8 fr_CA.UTF-8 fr_CH.UTF-8
67NLSLINKS_it_IT.UTF-8 = it_CH.UTF-8
68
69.if ${MK_NLS_CATALOGS} == "no" || defined(RESCUE)
70CFLAGS+= -DNO_NLS_CATALOGS
71.else
72CFLAGS+= -DHAVE_ICONV
73.if ${MK_ICONV} != "no"
74NLSLINKS_de_DE.UTF-8 += de_AT.ISO8859-1 de_AT.ISO8859-15 de_CH.ISO8859-1 \
75 de_CH.ISO8859-15 de_DE.ISO8859-1 de_DE.ISO8859-15
76NLSLINKS_el_GR.UTF-8 = el_GR.ISO8859-7
77NLSLINKS_es_ES.UTF-8 = es_ES.ISO8859-1 es_ES.ISO8859-15
78NLSLINKS_et_EE.UTF-8 = et_EE.ISO8859-15
79NLSLINKS_fi_FI.UTF-8 = fi_FI.ISO8859-1 fi_FI.ISO8859-15
80NLSLINKS_fr_FR.UTF-8 += fr_BE.ISO8859-1 fr_BE.ISO8859-15 \
81 fr_CA.ISO8859-1 fr_CA.ISO8859-15 fr_CH.ISO8859-1 \
82 fr_CH.ISO8859-15 fr_FR.ISO8859-1 fr_FR.ISO8859-15
83NLSLINKS_it_IT.UTF-8 += it_CH.ISO8859-1 it_CH.ISO8859-15 it_IT.ISO8859-1 \
84 it_IT.ISO8859-15
85NLSLINKS_ja_JP.UTF-8 = ja_JP.SJIS ja_JP.eucJP
86NLSLINKS_ru_RU.UTF-8 = ru_RU.CP1251 ru_RU.CP866 ru_RU.ISO8859-5 ru_RU.KOI8-R
87NLSLINKS_uk_UA.UTF-8 = uk_UA.ISO8859-5 uk_UA.KOI8-U
88.else
89# Above links can be installed from ports/shells/tcsh_nls
90
91GENHDRS+= iconv.h
92SRCS+= iconv_stub.c
93
94iconv.h: ${.CURDIR}/iconv_stub.h
95 ${CP} ${.CURDIR}/iconv_stub.h ${.TARGET}

--- 54 unchanged lines hidden ---