blob: 9a25968074da09ff2569c3c681aa1c09a7bbf2c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.5 2004/02/22 05:16:30 deraadt Exp $
.if (${MACHINE} == "i386")
PROG= mount_ntfs
SRCS= mount_ntfs.c getmntopts.c
.else
NOPROG=
.endif
MAN= mount_ntfs.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
.include <bsd.prog.mk>
|