f051d72314
Remove the hard-coded dependency on HYPERV being only x86. Instead, 100% rely on MK_HYPERV. It's always right (since it's marked BROKEN (so set to "no") on architectures we don't support). Sponsored by: Netflix Reviewed by: bz Differential Revision: https://reviews.freebsd.org/D38306
123 lines
1.7 KiB
Makefile
123 lines
1.7 KiB
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= ${_atf} \
|
|
${_atrun} \
|
|
${_blacklistd-helper} \
|
|
${_comsat} \
|
|
${_dma} \
|
|
flua \
|
|
getty \
|
|
${_hyperv} \
|
|
${_mail.local} \
|
|
${_makewhatis.local} \
|
|
${_mknetid} \
|
|
${_phttpget} \
|
|
${_pppoed} \
|
|
rc \
|
|
revnetgroup \
|
|
${_rlogind} \
|
|
rpc.rquotad \
|
|
rpc.rstatd \
|
|
rpc.rusersd \
|
|
rpc.rwalld \
|
|
rpc.sprayd \
|
|
${_rshd} \
|
|
${_rtld-elf} \
|
|
save-entropy \
|
|
${_smrsh} \
|
|
${_tests} \
|
|
${_tftp-proxy} \
|
|
ulog-helper \
|
|
${_ypxfr}
|
|
|
|
.if ${MK_AT} != "no"
|
|
_atrun= atrun
|
|
.endif
|
|
|
|
.if ${MK_BLACKLIST} != "no"
|
|
_blacklistd-helper+= blacklistd-helper
|
|
.endif
|
|
|
|
.if ${MK_BOOTPD} != "no"
|
|
SUBDIR+= bootpd
|
|
.endif
|
|
|
|
.if ${MK_FINGER} != "no"
|
|
SUBDIR+= fingerd
|
|
.endif
|
|
|
|
.if ${MK_FREEBSD_UPDATE} != "no" || ${MK_PORTSNAP} != "no"
|
|
_phttpget= phttpget
|
|
.endif
|
|
|
|
.if ${MK_FTP} != "no"
|
|
SUBDIR+= ftpd
|
|
.endif
|
|
|
|
.if ${MK_MAIL} != "no"
|
|
_comsat= comsat
|
|
.endif
|
|
|
|
.if ${MK_DMAGENT} != "no"
|
|
_dma= dma
|
|
.endif
|
|
|
|
.if ${MK_HYPERV} != "no"
|
|
_hyperv+= hyperv
|
|
.endif
|
|
|
|
.if ${MK_NIS} != "no"
|
|
_mknetid= mknetid
|
|
_ypxfr= ypxfr
|
|
.endif
|
|
|
|
.if ${MK_NETGRAPH} != "no"
|
|
_pppoed= pppoed
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
_tftp-proxy= tftp-proxy
|
|
.endif
|
|
|
|
.if !defined(NO_PIC) && !defined(NO_RTLD)
|
|
_rtld-elf= rtld-elf
|
|
SUBDIR.${MK_LIB32}+= rtld-elf32
|
|
.endif
|
|
|
|
.if ${MK_RBOOTD} != "no"
|
|
SUBDIR+= rbootd
|
|
.endif
|
|
|
|
.if ${MK_SENDMAIL} != "no"
|
|
_mail.local= mail.local
|
|
_smrsh= smrsh
|
|
.endif
|
|
|
|
.if ${MK_MAN_UTILS} != "no"
|
|
_makewhatis.local= makewhatis.local
|
|
.endif
|
|
|
|
.if ${MK_TALK} != "no"
|
|
SUBDIR+= talkd
|
|
.endif
|
|
|
|
.if ${MK_TCP_WRAPPERS} != "no"
|
|
SUBDIR+= tcpd
|
|
.endif
|
|
|
|
.if ${MK_TFTP} != "no"
|
|
SUBDIR+= tftpd
|
|
.endif
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
_atf= atf
|
|
_tests= tests
|
|
.endif
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
.include <bsd.subdir.mk>
|