aboutsummaryrefslogtreecommitdiff
path: root/share/Makefile
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-08-05 14:59:50 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-08-05 14:59:50 +0000
commit9c4b72390db708cdc13bfe70fa53a14fd4b405d0 (patch)
tree5edbeacf7246369d36056839b79f15458f53fd81 /share/Makefile
parentab4f10302f6bce8770a7871d0a1e76a8730c3e73 (diff)
downloadsrc-9c4b72390db708cdc13bfe70fa53a14fd4b405d0.tar.gz
src-9c4b72390db708cdc13bfe70fa53a14fd4b405d0.zip
Introduce NO_LOCALES build option.
Notes
Notes: svn path=/head/; revision=148736
Diffstat (limited to 'share/Makefile')
-rw-r--r--share/Makefile21
1 files changed, 15 insertions, 6 deletions
diff --git a/share/Makefile b/share/Makefile
index 4f87089231cd..db2089a7642b 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