From: Arun Prakash Jana Date: Sun, 1 Nov 2020 18:31:28 +0000 (+0530) Subject: make target upx (https://upx.github.io/) X-Git-Tag: v3.5~17 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=9f6808a35a91a0919c59432c6127394b737e1b9c;p=nnn.git make target upx (https://upx.github.io/) --- diff --git a/Makefile b/Makefile index 072bf33c..383f9849 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,10 @@ uninstall: strip: $(BIN) $(STRIP) $^ +upx: $(BIN) + $(STRIP) $^ + upx -qqq $^ + static: # regular static binary make O_STATIC=1 strip