diff options
| author | Xin LI <delphij@FreeBSD.org> | 2014-09-13 02:15:31 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2014-09-13 02:15:31 +0000 |
| commit | e72055b7feba695a760d45f01f0f8268b1cb4a74 (patch) | |
| tree | 90bd58d5fdad38f917effa8d5ce8a33002b06656 /libexec | |
| parent | b75ac2ba766f64c4db29f147d342332a461c551c (diff) | |
Notes
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/Makefile | 5 | ||||
| -rw-r--r-- | libexec/hyperv/Makefile | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index 8a32694d40506..74cc6d8fb27f0 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -13,6 +13,7 @@ SUBDIR= ${_atf} \ fingerd \ ftpd \ getty \ + ${_hyperv} \ ${_mail.local} \ ${_mknetid} \ ${_pppoed} \ @@ -54,6 +55,10 @@ _dma= dma _dma-mbox-create= dma-mbox-create .endif +.if ${MK_HYPERV} != "no" +_hyperv= hyperv +.endif + .if ${MK_NIS} != "no" _mknetid= mknetid _ypxfr= ypxfr diff --git a/libexec/hyperv/Makefile b/libexec/hyperv/Makefile new file mode 100644 index 0000000000000..37abdf5b8b3b3 --- /dev/null +++ b/libexec/hyperv/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../contrib/hyperv/tools/scripts + +BINDIR= /usr/libexec/hyperv + +SCRIPTS= hv_set_ifconfig hv_get_dns_info hv_get_dhcp_info +NO_OBJ= + +.include <bsd.prog.mk> |
