diff options
author | Sam Leffler <sam@FreeBSD.org> | 2008-09-21 22:02:26 +0000 |
---|---|---|
committer | Sam Leffler <sam@FreeBSD.org> | 2008-09-21 22:02:26 +0000 |
commit | 690f477d75324543e57e2b45354c6e0670b9a5f7 (patch) | |
tree | 6d0176f734c952569004dea8a4d84a092ced5821 /share/Makefile | |
parent | eba1dd2124fa2c06c7ad100d2ac2a3a8786f9c9d (diff) | |
download | src-test-690f477d75324543e57e2b45354c6e0670b9a5f7.tar.gz src-test-690f477d75324543e57e2b45354c6e0670b9a5f7.zip |
Notes
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/share/Makefile b/share/Makefile index 5143ea8f9735a..4a5f0c4a240b2 100644 --- a/share/Makefile +++ b/share/Makefile @@ -12,20 +12,38 @@ SUBDIR= ${_colldef} \ ${_man} \ ${_me} \ misc \ - mk \ + ${_mk} \ ${_mklocale} \ ${_monetdef} \ ${_msgdef} \ ${_numericdef} \ ${_sendmail} \ skel \ - snmp \ + ${_snmp} \ ${_syscons} \ tabset \ termcap \ ${_timedef} \ ${_zoneinfo} +# NB: keep these sorted by MK_* knobs + +.if ${MK_BSNMP} != "no" +_snmp= snmp +.endif + +.if ${MK_DICT} != "no" +_dict= dict +.endif + +.if ${MK_EXAMPLES} != "no" +_examples= examples +.endif + +.if ${MK_GROFF} != "no" +_me= me +.endif + .if ${MK_LOCALES} != "no" _colldef = colldef _mklocale = mklocale @@ -35,26 +53,14 @@ _numericdef = numericdef _timedef = timedef .endif -.if ${MK_SYSCONS} != "no" -_syscons= syscons +.if ${MK_MAKE} != "no" +_mk= mk .endif .if ${MK_MAN} != "no" _man= man .endif -.if ${MK_GROFF} != "no" -_me= me -.endif - -.if ${MK_EXAMPLES} != "no" -_examples= examples -.endif - -.if ${MK_DICT} != "no" -_dict= dict -.endif - .if ${MK_SENDMAIL} != "no" _sendmail= sendmail .endif @@ -63,6 +69,10 @@ _sendmail= sendmail _doc= doc .endif +.if ${MK_SYSCONS} != "no" +_syscons= syscons +.endif + .if ${MK_ZONEINFO} != "no" _zoneinfo= zoneinfo .endif |