c6db8143ed
Reduce overlinking
17 lines
311 B
Makefile
17 lines
311 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
|
|
|
|
LIBADD= smb
|
|
|
|
.PATH: ${CONTRIBDIR}/mount_smbfs
|
|
.PATH: ${MOUNTDIR}
|
|
|
|
.include <bsd.prog.mk>
|