diff options
author | 2016-05-21 21:25:33 +0000 | |
---|---|---|
committer | 2016-05-21 21:25:33 +0000 | |
commit | f000cfee8f5cbe9628b06767d084b36c9a59ace0 (patch) | |
tree | 7ddc6d391a2523194ac9ebc14b34ac0e42fefd3b | |
parent | Implement openprom(4) for armv7. (diff) | |
download | wireguard-openbsd-f000cfee8f5cbe9628b06767d084b36c9a59ace0.tar.xz wireguard-openbsd-f000cfee8f5cbe9628b06767d084b36c9a59ace0.zip |
Build on armv7.
-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 01accd750f8..0854b0d7919 100644 --- a/usr.sbin/eeprom/Makefile +++ b/usr.sbin/eeprom/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.13 2015/03/11 18:12:27 deraadt Exp $ +# $OpenBSD: Makefile,v 1.14 2016/05/21 21:25:33 kettenis Exp $ -.if ${MACHINE} == "macppc" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" +.if ${MACHINE} == "armv7" || ${MACHINE} == "macppc" || \ + ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" PROG= eeprom SRCS= getdate.c main.c @@ -16,6 +17,6 @@ NOPROG=yes .endif MAN= eeprom.8 -MANSUBDIR=macppc sparc sparc64 +MANSUBDIR=armv7 macppc sparc sparc64 .include <bsd.prog.mk> |