blob: 79799dbe799c50ed429be580a5cdb6b532cc6f7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.13 2010/03/30 07:26:23 mrg Exp $
.include <bsd.own.mk>
.if (${MACHINE_ARCH} == "alpha" || \
${MACHINE_CPU} == "arm" || \
${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "m68k" || \
${MACHINE_CPU} == "powerpc" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "sparc64" || \
${MACHINE_ARCH} == "x86_64")
PROG= fdformat
.endif
MAN= fdformat.1
.include <bsd.prog.mk>
|