]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/mount_smbfs/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / mount_smbfs / Makefile
1 # $FreeBSD$
2
3 PROG=   mount_smbfs
4 SRCS=   mount_smbfs.c getmntopts.c
5 MAN=    mount_smbfs.8
6
7 MOUNTDIR=       ${.CURDIR}/../../sbin/mount
8 CONTRIBDIR=     ${.CURDIR}/../../contrib/smbfs
9 CFLAGS+=        -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
10
11 LDADD=  -lsmb -lkiconv
12 DPADD=  ${LIBSMB} ${LIBKICONV}
13
14 .PATH:  ${CONTRIBDIR}/mount_smbfs
15 .PATH:  ${MOUNTDIR}
16
17 .include <bsd.prog.mk>