blob: 9a08775f5a0139eede8148febcd48e9873df2d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.1 2014/12/23 17:16:02 deraadt Exp $
PROG= mount_nfs
SRCS= mount_nfs.c getmntopts.c
MAN= mount_nfs.8
MOUNT= ${.CURDIR}/../../../sbin/mount
CFLAGS+= -DNFS -I${MOUNT}
.PATH: ${MOUNT}
.PATH: ${.CURDIR}/../../../sbin/mount_nfs
.include <bsd.prog.mk>
|