commit c7783359ce007b67da35e8e84861c169da722ef7 parent 5be4a30043b4f7cdd22964de15b7fb18eebdf4a8 Author: bdmfegys@duck.com <bdmfegys@duck.com> Date: Sun, 19 May 2024 13:21:23 -0400 Makefile: simplify if statement for finding upx and using it Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -1,5 +1,4 @@ # Mrgrouse's makefile! - all: bin clean: @@ -7,4 +6,5 @@ clean: bin: main.rs rustc main.rs -o bin + [ -z $(which upx) ] && upx bin;