mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
26 lines
464 B
Makefile
26 lines
464 B
Makefile
.include <src.opts.mk>
|
|
|
|
CONFS= nsmb.conf
|
|
CONFSMODE= 600
|
|
PACKAGE= smbutils
|
|
CONTRIBDIR= ${SRCTOP}/contrib/smbfs
|
|
.PATH: ${CONTRIBDIR}/lib/smb
|
|
|
|
LIB= smb
|
|
SHLIB_MAJOR= 4
|
|
LIBADD= kiconv
|
|
|
|
SRCS= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
|
|
print.c \
|
|
kiconv.c \
|
|
nb.c nb_name.c nb_net.c nbns_rq.c
|
|
|
|
WARNS?= 1
|
|
CFLAGS+= -DSMB_CFG_FILE=\"/etc/nsmb.conf\" -I${CONTRIBDIR}/include
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
CFLAGS+= -DHAVE_ICONV=1
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|