d8239e2877
Removed "deinstall" targets -- the idea is to provide the standard "deinstall" target.
16 lines
264 B
Makefile
16 lines
264 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../netncp
|
|
|
|
KMOD= ncp
|
|
|
|
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_ncp.h
|
|
|
|
.if defined(NCPBURST)
|
|
SRCS+= ncp_burst.c
|
|
CFLAGS+= -DNCPBURST
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|