blob: 57dcf4acdb248fb62b01f6377eebf37cc7cc31ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.6 2004/10/11 14:45:33 avsm Exp $
.if (${MACHINE} == "i386" || ${MACHINE} == "amd64")
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>
|