1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Build apm(8) and apmd(8) on sparc64.

pointed out by deraadt@
This commit is contained in:
kettenis 2008-08-11 18:45:13 +00:00
parent 8deb0a9a41
commit da08173a2a
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.11 2006/03/14 22:30:53 sturm Exp $
# $OpenBSD: Makefile,v 1.12 2008/08/11 18:45:13 kettenis Exp $
.if (${MACHINE} == "amd64") || (${MACHINE} == "i386") || \
(${MACHINE} == "macppc") || (${MACHINE} == "sparc") || \
(${MACHINE} == "zaurus")
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus")
SRCS= apm.c apmsubr.c
.PATH: ${.CURDIR}/../apmd
@ -16,7 +16,7 @@ NOPROG=yes
.endif
MAN= apm.8
MANSUBDIR=amd64 i386 macppc sparc zaurus
MANSUBDIR=amd64 i386 macppc sparc sparc64 zaurus
MLINKS= apm.8 zzz.8
.include <bsd.prog.mk>

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.9 2006/03/14 22:30:53 sturm Exp $
# $OpenBSD: Makefile,v 1.10 2008/08/11 18:45:13 kettenis Exp $
.if (${MACHINE} == "amd64") || (${MACHINE} == "i386") || \
(${MACHINE} == "macppc") || (${MACHINE} == "sparc") || \
(${MACHINE} == "zaurus")
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus")
SRCS= apmd.c apmsubr.c
PROG= apmd
@ -11,6 +11,6 @@ NOPROG=yes
.endif
MAN= apmd.8
MANSUBDIR=amd64 i386 macppc sparc zaurus
MANSUBDIR=amd64 i386 macppc sparc sparc64 zaurus
.include <bsd.prog.mk>