]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/mount_smbfs/Makefile
MFC r325067:
[FreeBSD/stable/10.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>