diff options
Diffstat (limited to 'sys/arch/alpha/stand/setnetbootinfo/Makefile')
-rw-r--r-- | sys/arch/alpha/stand/setnetbootinfo/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/arch/alpha/stand/setnetbootinfo/Makefile b/sys/arch/alpha/stand/setnetbootinfo/Makefile index 293399e1da8..ff30d7a5de6 100644 --- a/sys/arch/alpha/stand/setnetbootinfo/Makefile +++ b/sys/arch/alpha/stand/setnetbootinfo/Makefile @@ -1,15 +1,19 @@ -# $OpenBSD: Makefile,v 1.1 1997/05/05 06:02:02 millert Exp $ +# $OpenBSD: Makefile,v 1.2 2000/05/25 21:54:40 deraadt Exp $ # $NetBSD: Makefile,v 1.4 1997/04/06 08:41:36 cgd Exp $ .PATH: ${.CURDIR}/.. -PROG= setnetbootinfo -BINDIR= /usr/mdec - MAN= setnetbootinfo.8 MANSUBDIR=/alpha +.if ${MACHINE} == "alpha" +PROG= setnetbootinfo +BINDIR= /usr/mdec + CFLAGS+= -I${.CURDIR}/.. LDSTATIC=-static +.else +NOPROG= +.endif .include <bsd.prog.mk> |