daaf575910
Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and lower it when needed. I'm setting WARNS?=0 for secure/. It seems secure/ includes the Makefile.inc provided by lib/. I'm not going to touch that directory. Most of the code there is contributed anyway.
17 lines
275 B
Makefile
17 lines
275 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= ncp
|
|
|
|
SHLIB_MAJOR= 4
|
|
|
|
DPADD= ${LIBIPX}
|
|
LDADD= -lipx
|
|
|
|
SRCS= ncpl_subr.c ncpl_bind.c ncpl_queue.c ncpl_file.c ncpl_misc.c \
|
|
ncpl_net.c ncpl_rcfile.c ncpl_conn.c ncpl_nls.c ncpl_msg.c \
|
|
ncpl_rpc.c ncpl_crypt.c ipx.c sap.c
|
|
|
|
WARNS?= 0
|
|
|
|
.include <bsd.lib.mk>
|