aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorGravatar Maxim Baz <git@maximbaz.com>2020-01-30 22:46:06 +0100
committerGravatar GitHub <noreply@github.com>2020-01-31 03:16:06 +0530
commit6b093f213f45d4a7201dd8b4235a7bd0fbc64952 (patch)
treecd32ed4065f501166756aed4490e5a2b4ce27cca /misc
parent6f48a711d408f4fdc4e3474afb23f351b6fc8f1c (diff)
downloadnnn-6b093f213f45d4a7201dd8b4235a7bd0fbc64952.tar.gz
Compile static bin locally for release (#457)
Diffstat (limited to 'misc')
-rw-r--r--misc/haiku/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/misc/haiku/Makefile b/misc/haiku/Makefile
index 843df9d..1568855 100644
--- a/misc/haiku/Makefile
+++ b/misc/haiku/Makefile
@@ -100,6 +100,10 @@ uninstall:
strip: $(BIN)
$(STRIP) $^
+static:
+ make O_STATIC=1 strip
+ mv $(BIN) $(BIN)-static
+
dist:
mkdir -p nnn-$(VERSION)
$(CP) -r $(DISTFILES) nnn-$(VERSION)
@@ -113,14 +117,18 @@ sign:
gpg --detach-sign --yes nnn-$(VERSION).tar.gz
rm -f nnn-$(VERSION).tar.gz
+upload-local: sign static
$(eval ID=$(shell curl -s 'https://api.github.com/repos/jarun/nnn/releases/tags/v$(VERSION)' | jq .id))
curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION).tar.gz.sig' \
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \
--upload-file nnn-$(VERSION).tar.gz.sig
+ curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION)-static' \
+ -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \
+ --upload-file $(BIN)-static
clean:
- $(RM) -f $(BIN) $(OBJS) nnn-$(VERSION).tar.gz *.sig
+ $(RM) -f $(BIN) $(BIN)-static $(OBJS) nnn-$(VERSION).tar.gz *.sig
skip: ;
-.PHONY: all install uninstall strip dist sign clean
+.PHONY: all install uninstall strip static dist sign upload-local clean