diff --git a/sys/modules/ncp/Makefile b/sys/modules/ncp/Makefile index 22df62a21949..256a5bf73010 100644 --- a/sys/modules/ncp/Makefile +++ b/sys/modules/ncp/Makefile @@ -4,14 +4,8 @@ KMOD= ncp -# Build with IPX support (1|0) -NCP_IPX?= 1 - -# Build with INET support (1|0) -NCP_INET?= 1 - SRCS= ncp_conn.c ncp_sock.c ncp_ncp.c ncp_subr.c ncp_crypt.c ncp_mod.c \ - ncp_rq.c ncp_login.c ncp_nls.c opt_inet.h opt_ipx.h opt_ncp.h + ncp_rq.c ncp_login.c ncp_nls.c opt_ncp.h .if defined(NCPBURST) SRCS+= ncp_burst.c @@ -20,16 +14,6 @@ CFLAGS+= -DNCPBURST NOMAN= -.if ${NCP_INET} > 0 -opt_inet.h: - echo "#define INET 1" > ${.TARGET} -.endif - -.if ${NCP_IPX} > 0 -opt_ipx.h: - echo "#define IPX 1" > ${.TARGET} -.endif - load: ${KMOD}.ko kldload ./${KMOD}.ko