From: 諏訪子 Date: Tue, 16 Apr 2024 03:30:37 +0000 (+0900) Subject: Linux向けのリリースコマンドの追加 X-Git-Tag: sp-1.3.0~23^2 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=refs%2Fpull%2F12%2Fhead;p=sp.git Linux向けのリリースコマンドの追加 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8a806..e6880e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * GNU Make → BSD Make * GPLv2 → ISC * OpenBSD向けのリリースコマンドの追加 +* Linux向けのリリースコマンドの追加 # 1.2.0 * やっとTOTP機能性を修正した diff --git a/Makefile b/Makefile index 3717ca8..bb9b293 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,10 @@ release-openbsd: ${CC} ${CFLAGS} -o ${NAME}-${VERSION}-openbsd-amd64 ${FILES} -static -lgpgme -lcrypto -lc -lassuan -lgpg-error -lintl -liconv strip ${NAME} +release-linux: + ${CC} ${CFLAGS} -o ${NAME}-${VERSION}-linux-amd64 ${FILES} -static -lgpgme -lcrypto -lc -lassuan -lgpg-error + strip ${NAME} + install: all mkdir -p ${DESTDIR}${PREFIX}/bin cp -f ${NAME} ${DESTDIR}${PREFIX}/bin