diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-01-20 13:09:29 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-01-20 13:09:29 +0000 |
commit | 24dfc36033c318e18ff3960525894351457ca335 (patch) | |
tree | 63223392d349cf748fc8e891a40867f82e8a1fbf /share/Makefile | |
parent | 568fb8796fc7a287010137df8c4b77858b42f7aa (diff) |
Normalize.
Notes
Notes:
svn path=/head/; revision=124750
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/share/Makefile b/share/Makefile index d79d7a4261ea..f1649bb9e1f8 100644 --- a/share/Makefile +++ b/share/Makefile @@ -3,19 +3,37 @@ # Do not include `info' in the SUBDIR list, it is handled separately. -SUBDIR= colldef dict examples man me misc mk mklocale monetdef \ - msgdef numericdef skel syscons tabset termcap timedef zoneinfo - -.if !defined(NO_SHAREDOCS) -SUBDIR+= doc -.endif +SUBDIR= colldef \ + dict \ + ${_doc} \ + examples \ + ${_isdn} \ + man \ + me \ + misc \ + mk \ + mklocale \ + monetdef \ + msgdef \ + numericdef \ + ${_sendmail} \ + skel \ + syscons \ + tabset \ + termcap \ + timedef \ + zoneinfo .if !defined(NO_I4B) -SUBDIR+= isdn +_isdn= isdn .endif .if !defined(NO_SENDMAIL) -SUBDIR+= sendmail +_sendmail= sendmail +.endif + +.if !defined(NO_SHAREDOCS) +_doc= doc .endif .include <bsd.subdir.mk> |