17 lines
421 B
Makefile
17 lines
421 B
Makefile
# $NetBSD: Makefile,v 1.10 2009/02/14 22:46:05 abs Exp $
|
|
|
|
WARNS=3
|
|
.if (${MACHINE_ARCH} == "alpha" || \
|
|
${MACHINE_ARCH} == "arm" || \
|
|
${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>
|