c76b3c840a
Reviewed by: bp (smbfs maintainer)
24 lines
485 B
Makefile
24 lines
485 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mount_smbfs
|
|
SRCS= mount_smbfs.c getmntopts.c
|
|
WARNS?= 6
|
|
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}
|
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
# userland libiconv (see the -E option).
|
|
#
|
|
NO_SHARED?= NO
|
|
|
|
.PATH: ${CONTRIBDIR}/mount_smbfs
|
|
.PATH: ${MOUNTDIR}
|
|
|
|
.include <bsd.prog.mk>
|