diff options
author | bp <bp@FreeBSD.org> | 2001-03-10 05:42:44 +0000 |
---|---|---|
committer | bp <bp@FreeBSD.org> | 2001-03-10 05:42:44 +0000 |
commit | eacd05832fdd7e81753bc42090fe802d3d2eeebb (patch) | |
tree | d0eca94b5a1a2b44a7c023a33db46f2e96b6e194 /sys/modules | |
parent | cc5c440cbfce5c3f3316bfa75642c49d47418021 (diff) | |
download | FreeBSD-src-eacd05832fdd7e81753bc42090fe802d3d2eeebb.zip FreeBSD-src-eacd05832fdd7e81753bc42090fe802d3d2eeebb.tar.gz |
Remove now unused opt_ipx.h and opt_inet.h
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ncp/Makefile | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sys/modules/ncp/Makefile b/sys/modules/ncp/Makefile index 22df62a..256a5bf 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 |