morse(6): correct email for original author
[dragonfly.git] / sbin / mount_smbfs / Makefile
blobe8502c8b65ea0082aef2ccb80db3fabed5a75c79
1 # $FreeBSD: src/sbin/mount_smbfs/Makefile,v 1.1.2.3 2001/12/20 16:28:30 sheldonh Exp $
3 PROG= mount_smbfs
4 SRCS= mount_smbfs.c getmntopts.c
5 MAN= mount_smbfs.8
7 CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs
8 CFLAGS+= -DSMBFS -I${CONTRIBDIR}/include
10 LDADD+= -lsmb
11 DPADD+= ${LIBSMB}
13 # Needs to be dynamically linked for optional dlopen() access to
14 # userland libiconv (see the -E option).
16 .if !defined(REALLY_NOSHARED)
17 .undef NOSHARED
18 .endif
20 .PATH: ${CONTRIBDIR}/mount_smbfs
22 .include <bsd.prog.mk>