21 lines
462 B
Makefile
21 lines
462 B
Makefile
# $NetBSD: Makefile,v 1.2 2003/03/22 12:44:01 jdolecek Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mount_smbfs
|
|
SRCS= mount_smbfs.c
|
|
SRCS+= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
|
|
print.c kiconv.c nb.c nb_name.c nb_net.c nbns_rq.c
|
|
MAN= mount_smbfs.8
|
|
|
|
SMBDIST=${NETBSDSRCDIR}/dist/smbfs
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/sys -I${SMBDIST}/include
|
|
|
|
.PATH: ${SMBDIST}/mount_smbfs ${SMBDIST}/lib/smb
|
|
|
|
DPADD+=${LIBUTIL}
|
|
LDADD+=-lutil
|
|
|
|
.include <bsd.prog.mk>
|