From b59041ac6825e0fb54d7ff62abfd01451c1c6009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AB=8F=E8=A8=AA=E5=AD=90?= Date: Wed, 24 Apr 2024 23:19:44 +0900 Subject: [PATCH] =?UTF-8?q?OpenBSD=2032-bit=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 9de03f8..30b8b89 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,13 @@ all: clean: rm -f ${NAME} +release-openbsd-i386: + mkdir -p release/bin + ${CC} ${CFLAGS} -o release/bin/${NAME}-${VERSION}-openbsd-i386 ${FILES} ${LDFLAGS} \ + -static -lcurl -lc -lnghttp3 -lngtcp2_crypto_quictls -lngtcp2 -lssl \ + -lcrypto -lnghttp2 -lz -lpthread + strip release/bin/${NAME}-${VERSION}-openbsd-i386 + release-openbsd: mkdir -p release/bin ${CC} ${CFLAGS} -o release/bin/${NAME}-${VERSION}-openbsd-amd64 ${FILES} ${LDFLAGS} \