From 9f6808a35a91a0919c59432c6127394b737e1b9c Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 2 Nov 2020 00:01:28 +0530 Subject: [PATCH] make target upx (https://upx.github.io/) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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