build eeprom on riscv64
authorjsg <jsg@openbsd.org>
Wed, 28 Apr 2021 15:15:37 +0000 (15:15 +0000)
committerjsg <jsg@openbsd.org>
Wed, 28 Apr 2021 15:15:37 +0000 (15:15 +0000)
usr.sbin/eeprom/Makefile

index 4965056..3a54bb0 100644 (file)
@@ -1,8 +1,9 @@
-#      $OpenBSD: Makefile,v 1.20 2020/06/29 15:34:07 kettenis Exp $
+#      $OpenBSD: Makefile,v 1.21 2021/04/28 15:15:37 jsg Exp $
 
 .if ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \
     ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \
-    ${MACHINE} == "powerpc64" || ${MACHINE} == "sparc64"
+    ${MACHINE} == "powerpc64" || ${MACHINE} == "riscv64" || \
+    ${MACHINE} == "sparc64"
 PROG=  eeprom
 
 SRCS=  main.c
@@ -13,6 +14,6 @@ NOPROG=yes
 .endif
 
 MAN=   eeprom.8
-MANSUBDIR=arm64 armv7 macppc octeon powerpc64 sparc64
+MANSUBDIR=arm64 armv7 macppc octeon powerpc64 riscv64 sparc64
 
 .include <bsd.prog.mk>