diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-12-14 11:41:22 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-12-14 11:41:22 +0000 |
commit | 551d694f64492d4841014ae147153c9ca632408c (patch) | |
tree | a6563e2409fea18ff81d15c248055df33169e326 /lib/libsmb | |
parent | e19de1ca7045af9c082151e6054a81cbed69548f (diff) | |
download | FreeBSD-src-551d694f64492d4841014ae147153c9ca632408c.zip FreeBSD-src-551d694f64492d4841014ae147153c9ca632408c.tar.gz |
Add bmake glue for src/contrib/smbfs and connect userland smbfs
support to the build.
The MFC reminder below is subject to <re@FreeBSD.org> approval
prior to 4.5-RELEASE.
Reviewed by: bp, fjoe
MFC: 1 week
Diffstat (limited to 'lib/libsmb')
-rw-r--r-- | lib/libsmb/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libsmb/Makefile b/lib/libsmb/Makefile new file mode 100644 index 0000000..f13595c --- /dev/null +++ b/lib/libsmb/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +LIB= smb + +SHLIB_MAJOR= 1 +SHLIB_MINOR= 0 + +NOMAN= + +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 +CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs +CFLAGS+= -I${CONTRIBDIR}/include + +.PATH: ${CONTRIBDIR}/lib/smb + +.include <bsd.lib.mk> |