mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 16:15:07 -04:00
28 lines
486 B
Makefile
28 lines
486 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/12/25 22:03:15 christos Exp $
|
|
|
|
WARNS?= 3 # XXX: sign-compare issues
|
|
|
|
BINDIR=/sbin
|
|
.include "../../Makefile.inc"
|
|
|
|
PROG= mount_smbfs
|
|
MAN= mount_smbfs.8
|
|
SRCS= mount_smbfs.c
|
|
|
|
CPPFLAGS+= -I${SMBDIST}/mount_smbfs
|
|
|
|
.PATH: ${SMBDIST}/mount_smbfs
|
|
|
|
DPADD+=${LIBUTIL}
|
|
LDADD+=-lutil
|
|
|
|
PROGDPLIBS += smb ${.CURDIR}/../../lib/libsmb
|
|
|
|
.if ${MKSHARE} != "no"
|
|
.PATH: ${SMBDIST}/examples
|
|
FILESDIR= /usr/share/examples/smbfs
|
|
FILES= dot.nsmbrc
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|