aboutsummaryrefslogtreecommitdiff
path: root/lib/libsmb
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2001-12-14 11:41:22 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2001-12-14 11:41:22 +0000
commit85519b003ada2a5da1e30e333332b15afadcb563 (patch)
treea6563e2409fea18ff81d15c248055df33169e326 /lib/libsmb
parente578c6f17ca7a0f3ab1bc7e8f06249187bcec067 (diff)
downloadsrc-85519b003ada2a5da1e30e333332b15afadcb563.tar.gz
src-85519b003ada2a5da1e30e333332b15afadcb563.zip
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
Notes
Notes: svn path=/head/; revision=87874
Diffstat (limited to 'lib/libsmb')
-rw-r--r--lib/libsmb/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libsmb/Makefile b/lib/libsmb/Makefile
new file mode 100644
index 000000000000..f13595c6d27c
--- /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>