Mention that -W too only works with -p or -d.
[dragonfly.git] / sbin / mount_smbfs / Makefile
blob6a131b938e3d577a97802292afe381ab361db8f5
1 # $FreeBSD: src/sbin/mount_smbfs/Makefile,v 1.1.2.3 2001/12/20 16:28:30 sheldonh Exp $
2 # $DragonFly: src/sbin/mount_smbfs/Makefile,v 1.5 2006/10/17 00:55:42 pavalos Exp $
4 PROG= mount_smbfs
5 SRCS= mount_smbfs.c getmntopts.c
6 MAN= mount_smbfs.8
8 MOUNTDIR= ${.CURDIR}/../mount
9 CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs
10 CFLAGS+= -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
12 LDADD+= -lsmb
13 DPADD+= ${LIBSMB}
15 # Needs to be dynamically linked for optional dlopen() access to
16 # userland libiconv (see the -E option).
18 NOSHARED?= NO
20 .PATH: ${CONTRIBDIR}/mount_smbfs
22 .include <bsd.prog.mk>