mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
16 lines
297 B
Makefile
16 lines
297 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mount_smbfs
|
|
SRCS= mount_smbfs.c getmntopts.c
|
|
MAN= mount_smbfs.8
|
|
|
|
MOUNTDIR= ${SRCTOP}/sbin/mount
|
|
CONTRIBDIR= ${SRCTOP}/contrib/smbfs
|
|
CFLAGS+= -DSMBFS -I${MOUNTDIR} -I${CONTRIBDIR}/include
|
|
|
|
LIBADD= smb
|
|
|
|
.PATH: ${CONTRIBDIR}/mount_smbfs
|
|
.PATH: ${MOUNTDIR}
|
|
|
|
.include <bsd.prog.mk>
|