aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
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 /usr.bin
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 'usr.bin')
-rw-r--r--usr.bin/Makefile1
-rw-r--r--usr.bin/smbutil/Makefile14
2 files changed, 15 insertions, 0 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
index c003525dcf5e..1498784772b2 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -134,6 +134,7 @@ SUBDIR= apply \
sed \
shar \
showmount \
+ smbutil \
sockstat \
soelim \
split \
diff --git a/usr.bin/smbutil/Makefile b/usr.bin/smbutil/Makefile
new file mode 100644
index 000000000000..8db8db755535
--- /dev/null
+++ b/usr.bin/smbutil/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+PROG= smbutil
+SRCS= smbutil.c dumptree.c login.c lookup.c view.c print.c
+
+DPADD= ${LIBSMB}
+LDADD= -lsmb
+
+CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs
+CFLAGS+= -I${CONTRIBDIR}/include
+
+.PATH: ${CONTRIBDIR}/smbutil
+
+.include <bsd.prog.mk>