diff options
author | 2020-06-28 08:22:57 +0000 | |
---|---|---|
committer | 2020-06-28 08:22:57 +0000 | |
commit | f1bf7a744ff715880d2785a3b85dc0d9c2d8f7fe (patch) | |
tree | 3fb0d942d84e1d50a8a3270085d083b8d2daf418 | |
parent | Add powerpc64 bits. From drahn@ (diff) | |
download | wireguard-openbsd-f1bf7a744ff715880d2785a3b85dc0d9c2d8f7fe.tar.xz wireguard-openbsd-f1bf7a744ff715880d2785a3b85dc0d9c2d8f7fe.zip |
Add powerpc64 support.
-rw-r--r-- | lib/libm/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 2031f8b0df3..ff94ecf79cf 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.119 2018/07/18 20:21:12 naddy Exp $ +# $OpenBSD: Makefile,v 1.120 2020/06/28 08:22:57 kettenis Exp $ # $NetBSD: Makefile,v 1.28 1995/11/20 22:06:19 jtc Exp $ # # @(#)Makefile 5.1beta 93/09/24 @@ -60,6 +60,8 @@ ARCH_SRCS = e_sqrt.c e_sqrtf.c s_fabsf.c .PATH: ${.CURDIR}/arch/mips64 .elif (${MACHINE_ARCH} == "powerpc") .PATH: ${.CURDIR}/arch/powerpc +.elif (${MACHINE_ARCH} == "powerpc64") +.PATH: ${.CURDIR}/arch/powerpc64 .elif (${MACHINE_ARCH} == "sparc64") .PATH: ${.CURDIR}/arch/sparc64 ARCH_SRCS = e_sqrtl.c |