diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2016-07-05 12:57:59 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2016-07-05 12:57:59 +0000 |
commit | 78193046c6eeb1a4a0fc2197633a5c66ff5d67ff (patch) | |
tree | 34963f8e0dcf5c9741e7b5d3b5dbcbc3178f8279 /usr.sbin/eeprom | |
parent | b19ea67dab4c2d4815839d069f9a4e94d3a89b23 (diff) |
Build eeprom(8) on octeon.
ok kettenis@ deraadt@ jasper@
Diffstat (limited to 'usr.sbin/eeprom')
-rw-r--r-- | usr.sbin/eeprom/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/eeprom/Makefile b/usr.sbin/eeprom/Makefile index 0854b0d7919..33567414013 100644 --- a/usr.sbin/eeprom/Makefile +++ b/usr.sbin/eeprom/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.14 2016/05/21 21:25:33 kettenis Exp $ +# $OpenBSD: Makefile,v 1.15 2016/07/05 12:57:58 visa Exp $ .if ${MACHINE} == "armv7" || ${MACHINE} == "macppc" || \ - ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" + ${MACHINE} == "octeon" || ${MACHINE} == "sparc" || \ + ${MACHINE} == "sparc64" PROG= eeprom SRCS= getdate.c main.c @@ -17,6 +18,6 @@ NOPROG=yes .endif MAN= eeprom.8 -MANSUBDIR=armv7 macppc sparc sparc64 +MANSUBDIR=armv7 macppc octeon sparc sparc64 .include <bsd.prog.mk> |