Use GNU style like the rest of the file for my last commit.
[dragonfly/vkernel-mp.git] / sbin / mount_smbfs / Makefile
blobd5bbbb76f04769f7c478051077882d3c8498e40c
1 # $FreeBSD: src/sbin/mount_smbfs/Makefile,v 1.1.2.3 2001/12/20 16:28:30 sheldonh Exp $
2 # $DragonFly: src/sbin/mount_smbfs/Makefile,v 1.5 2006/10/17 02:55:42 pavalos Exp $
4 PROG= mount_smbfs
5 SRCS= mount_smbfs.c getmntopts.c
6 MAN= mount_smbfs.8
8 MOUNTDIR= ${.CURDIR}/../mount
9 CONTRIBDIR= ${.CURDIR}/../../contrib/smbfs
10 CFLAGS+= -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
12 LDADD+= -lsmb
13 DPADD+= ${LIBSMB}
15 # Needs to be dynamically linked for optional dlopen() access to
16 # userland libiconv (see the -E option).
18 NOSHARED?= NO
20 .PATH: ${CONTRIBDIR}/mount_smbfs
22 .include <bsd.prog.mk>