]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/mount_smbfs/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.sbin / mount_smbfs / Makefile
1 # $FreeBSD$
2
3 PROG=   mount_smbfs
4 SRCS=   mount_smbfs.c getmntopts.c
5 WARNS?= 6
6 MAN=    mount_smbfs.8
7
8 MOUNTDIR=       ${.CURDIR}/../../sbin/mount
9 CONTRIBDIR=     ${.CURDIR}/../../contrib/smbfs
10 CFLAGS+=        -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
11
12 LDADD=  -lsmb -lkiconv
13 DPADD=  ${LIBSMB} ${LIBKICONV}
14
15 # Needs to be dynamically linked for optional dlopen() access to
16 # userland libiconv (see the -E option).
17 #
18 NO_SHARED?=     NO
19
20 .PATH:  ${CONTRIBDIR}/mount_smbfs
21 .PATH:  ${MOUNTDIR}
22
23 .include <bsd.prog.mk>