]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_smbfs/Makefile
This commit was generated by cvs2svn to compensate for changes in r94889,
[FreeBSD/FreeBSD.git] / sbin / mount_smbfs / Makefile
1 # $FreeBSD$
2
3 PROG=   mount_smbfs
4 SRCS=   mount_smbfs.c getmntopts.c
5 WARNS?= 2
6 NO_WERROR=      yes
7 MAN=    mount_smbfs.8
8
9 MOUNTDIR=       ${.CURDIR}/../mount
10 CONTRIBDIR=     ${.CURDIR}/../../contrib/smbfs
11 CFLAGS+=        -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
12
13 LDADD+= -lsmb
14 DPADD+= ${LIBSMB}
15
16 # Needs to be dynamically linked for optional dlopen() access to
17 # userland libiconv (see the -E option).
18 #
19 NOSHARED?=      NO
20
21 .PATH:  ${CONTRIBDIR}/mount_smbfs
22
23 .include <bsd.prog.mk>