diff options
Diffstat (limited to 'sys/arch/amd64/stand/fdboot/Makefile')
-rw-r--r-- | sys/arch/amd64/stand/fdboot/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/amd64/stand/fdboot/Makefile b/sys/arch/amd64/stand/fdboot/Makefile index ffce0e5c0b9..ae9255eba68 100644 --- a/sys/arch/amd64/stand/fdboot/Makefile +++ b/sys/arch/amd64/stand/fdboot/Makefile @@ -1,11 +1,13 @@ -# $OpenBSD: Makefile,v 1.1 2012/10/12 14:00:02 jsing Exp $ - -PROG= fdboot -COPTS= -DFDBOOT +# $OpenBSD: Makefile,v 1.2 2012/10/13 14:10:35 jsing Exp $ MAN= MLINKS= +.if ${MACHINE} == "amd64" +PROG= fdboot +COPTS= -DFDBOOT +.endif + .PATH: ${.CURDIR}/../boot .include "${.CURDIR}/../boot/Makefile" |