diff options
author | 2020-07-21 13:57:08 +0000 | |
---|---|---|
committer | 2020-07-21 13:57:08 +0000 | |
commit | ae952c075c29d53dfcb259c96dad4c2e5bf65b6e (patch) | |
tree | 91a5d751d11b5cfa48ce45ae11dd86daf3d68fa2 | |
parent | unify and cleanup -DSEEALSO chunks in both disklabel Makefiles (diff) | |
download | wireguard-openbsd-ae952c075c29d53dfcb259c96dad4c2e5bf65b6e.tar.xz wireguard-openbsd-ae952c075c29d53dfcb259c96dad4c2e5bf65b6e.zip |
unify with base eeprom Makefile
-rw-r--r-- | distrib/special/eeprom/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/distrib/special/eeprom/Makefile b/distrib/special/eeprom/Makefile index 0fef085ca8a..a74ba4bac0f 100644 --- a/distrib/special/eeprom/Makefile +++ b/distrib/special/eeprom/Makefile @@ -1,8 +1,10 @@ -# $OpenBSD: Makefile,v 1.2 2016/09/01 10:08:29 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2020/07/21 13:57:08 deraadt Exp $ .PATH: ${.CURDIR}/../../../usr.sbin/eeprom -.if ${MACHINE} == "macppc" || ${MACHINE} == "sparc64" +.if ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \ + ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \ + ${MACHINE} == "powerpc64" || ${MACHINE} == "sparc64" PROG= eeprom SRCS= main.c |