diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-05-02 23:14:35 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-05-02 23:14:35 +0000 |
commit | 116ebc7eb48e17bf2aff3d692766e0496aaa2a01 (patch) | |
tree | 680ef2a2f77d55af5970d702ca12621f0fc699ee /sbin/kbd/Makefile | |
parent | 198b569554874615d602a75824759271c7b33af5 (diff) |
invert, sort, and build on hp300
ok miod@
Diffstat (limited to 'sbin/kbd/Makefile')
-rw-r--r-- | sbin/kbd/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/sbin/kbd/Makefile b/sbin/kbd/Makefile index 55bd8bf81b4..b3b8c035cd1 100644 --- a/sbin/kbd/Makefile +++ b/sbin/kbd/Makefile @@ -1,15 +1,11 @@ -# $OpenBSD: Makefile,v 1.25 2005/01/13 19:17:25 drahn Exp $ +# $OpenBSD: Makefile,v 1.26 2005/05/02 23:14:34 martin Exp $ # -# Be sure to change src/distrib/special/kbd/Makefile as well if you add -# architectures to this list! +# Be sure to change src/distrib/special/kbd/Makefile as well if you add or +# remove architectures on this list! # -.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ - (${MACHINE} == "alpha") || (${MACHINE} == "macppc") || \ - (${MACHINE} == "hppa") || (${MACHINE} == "sparc") || \ - (${MACHINE} == "sparc64") || (${MACHINE} == "vax") || \ - (${MACHINE} == "sgi") || (${MACHINE} == "cats") || \ - (${MACHINE} == "zaurus") +.if ${MACHINE} != "mac68k" && ${MACHINE} != "mvme68k" && \ + ${MACHINE} != "mvme88k" PROG= kbd @@ -23,5 +19,7 @@ NOPROG= Yes MAN= kbd.8 MANSUBDIR= alpha hppa i386 macppc sgi sparc sparc64 vax amd64 cats zaurus +MANSUBDIR= alpha amd64 cats hp300 hppa i386 macppc sgi sparc sparc64 vax \ + zaurus .include <bsd.prog.mk> |