freebsd_amp_hwpstate/usr.sbin/mount_smbfs/Makefile

23 lines
465 B
Makefile
Raw Normal View History

# $FreeBSD$
PROG= mount_smbfs
SRCS= mount_smbfs.c getmntopts.c
WARNS?= 6
MAN= mount_smbfs.8
2003-07-02 16:43:14 +00:00
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).
#
2004-12-21 09:59:45 +00:00
NO_SHARED?= NO
.PATH: ${CONTRIBDIR}/mount_smbfs
.include <bsd.prog.mk>