From 270427ac5b64903635b7c9feb7225e1933d14495 Mon Sep 17 00:00:00 2001 From: ru Date: Mon, 20 Mar 2006 14:24:58 +0000 Subject: Extend coverage of the MK_IPX build option to the following: - headers [1] - IPX library (libipx) - IPX support in ifconfig(8) - IPXrouted(8) - new MK_NCP option New MK_NCP build option controls: - and headers - NCP library (libncp) - ncplist(1) and ncplogin(1) - mount_nwfs(8) - ncp and nwfs kernel modules User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP. [1] unconditionally uses headers so they are still installed. This needs to be dealt with. --- usr.bin/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'usr.bin') diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 404ba91..7b5b5a9 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -303,8 +303,10 @@ _usbhidctl= usbhidctl .endif .if ${MACHINE_ARCH} == "i386" +.if ${MK_NCP} != "no" _ncplist= ncplist _ncplogin= ncplogin +.endif _smbutil= smbutil .endif @@ -313,8 +315,10 @@ _uac= uac .endif .if ${MACHINE_ARCH} == "amd64" +.if ${MK_NCP} != "no" _ncplist= ncplist _ncplogin= ncplogin +.endif _smbutil= smbutil .endif -- cgit v1.1