From c4c08cf6a8d0fa6dd27574e663e07cd2f52988b2 Mon Sep 17 00:00:00 2001 From: Lars Bahner Date: Mon, 8 Apr 2024 00:01:35 +0200 Subject: [PATCH] Add upx target to makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 1dee19f..b5d4906 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,9 @@ $(BINDIR): install: $(BINDIR) $(CMDS) sudo install -m755 $(CMDS) $(DESTDIR)$(BINDIR)/ + +upx: $(CMDS) + upx $(CMDS) debug: BUILDFLAGS = $(BUILDFAGS) -tags=debug debug: install