diff options
Diffstat (limited to 'sys/arch/i386/stand/fdboot/Makefile')
-rw-r--r-- | sys/arch/i386/stand/fdboot/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/i386/stand/fdboot/Makefile b/sys/arch/i386/stand/fdboot/Makefile index ffce0e5c0b9..5165a5f1fb4 100644 --- a/sys/arch/i386/stand/fdboot/Makefile +++ b/sys/arch/i386/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} == "i386" +PROG= fdboot +COPTS= -DFDBOOT +.endif + .PATH: ${.CURDIR}/../boot .include "${.CURDIR}/../boot/Makefile" |