9c1720e59a
And put smb related programs and lib in it. Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38228
18 lines
315 B
Makefile
18 lines
315 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mount_smbfs
|
|
PACKAGE= smbutils
|
|
SRCS= mount_smbfs.c getmntopts.c
|
|
MAN= mount_smbfs.8
|
|
|
|
MOUNTDIR= ${SRCTOP}/sbin/mount
|
|
CONTRIBDIR= ${SRCTOP}/contrib/smbfs
|
|
CFLAGS+= -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
|
|
|
|
LIBADD= smb
|
|
|
|
.PATH: ${CONTRIBDIR}/mount_smbfs
|
|
.PATH: ${MOUNTDIR}
|
|
|
|
.include <bsd.prog.mk>
|