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