096013098a
PR: 183153 Submitted by: Dominic Fandrey <kamikaze bsdforen.de>
18 lines
351 B
Makefile
18 lines
351 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mount_smbfs
|
|
SRCS= mount_smbfs.c getmntopts.c
|
|
MAN= mount_smbfs.8
|
|
|
|
MOUNTDIR= ${.CURDIR}/../../sbin/mount
|
|
CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs
|
|
CFLAGS+= -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
|
|
|
|
LDADD= -lsmb -lkiconv
|
|
DPADD= ${LIBSMB} ${LIBKICONV}
|
|
|
|
.PATH: ${CONTRIBDIR}/mount_smbfs
|
|
.PATH: ${MOUNTDIR}
|
|
|
|
.include <bsd.prog.mk>
|