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