blob: 6ea290c76fef82785ccc8c09d14f6ad9ef4203c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.12 2009/04/12 02:53:56 lukem Exp $
.if (${MACHINE_ARCH} == "alpha" || \
${MACHINE_ARCH} == "arm" || \
${MACHINE_ARCH} == "armeb" || \
${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "m68k" || \
${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "sparc64" || \
${MACHINE_ARCH} == "x86_64")
PROG= fdformat
.endif
MAN= fdformat.1
.include <bsd.prog.mk>
|