From 35e5541bb2e403d4e26ff83771a361a6b263f1a3 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 5 Aug 2005 14:59:50 +0000 Subject: Introduce NO_LOCALES build option. --- share/Makefile | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'share/Makefile') diff --git a/share/Makefile b/share/Makefile index 4f87089..db2089a 100644 --- a/share/Makefile +++ b/share/Makefile @@ -3,7 +3,7 @@ # Do not include `info' in the SUBDIR list, it is handled separately. -SUBDIR= colldef \ +SUBDIR= ${_colldef} \ ${_dict} \ ${_doc} \ ${_examples} \ @@ -12,19 +12,28 @@ SUBDIR= colldef \ ${_me} \ misc \ mk \ - mklocale \ - monetdef \ - msgdef \ - numericdef \ + ${_mklocale} \ + ${_monetdef} \ + ${_msgdef} \ + ${_numericdef} \ ${_sendmail} \ skel \ snmp \ ${_syscons} \ tabset \ termcap \ - timedef \ + ${_timedef} \ zoneinfo +.if !defined(NO_LOCALES) +_colldef = colldef +_mklocale = mklocale +_monetdef = monetdef +_msgdef = msgdef +_numericdef = numericdef +_timedef = timedef +.endif + .if !defined(NO_SYSCONS) _syscons= syscons .endif -- cgit v1.1