xref: /dragonfly/sbin/mount_smbfs/Makefile (revision 0ca59c34)
1# $FreeBSD: src/sbin/mount_smbfs/Makefile,v 1.1.2.3 2001/12/20 16:28:30 sheldonh Exp $
2
3PROG=	mount_smbfs
4SRCS=	mount_smbfs.c getmntopts.c
5MAN=	mount_smbfs.8
6
7CONTRIBDIR=	${.CURDIR}/../../contrib/smbfs
8CFLAGS+=	-DSMBFS -I${CONTRIBDIR}/include
9
10LDADD+= -lsmb
11DPADD+= ${LIBSMB}
12
13# Needs to be dynamically linked for optional dlopen() access to
14# userland libiconv (see the -E option).
15#
16NOSHARED?=	NO
17
18.PATH:	${CONTRIBDIR}/mount_smbfs
19
20.include <bsd.prog.mk>
21