lens @ 91d413b3a15a15fd8b710d8f5a1532d2e3de6f05

feat: Add make rules for upx compressing

I don't know if that will work in the long run but I have added just in
case.
 1diff --git a/Makefile b/Makefile
 2index 6987ced4c27219ed7fb0b4e45a4eefb88894765c..c40550f3511468aef34845a655475bfd1feb8f26 100644
 3--- a/Makefile
 4+++ b/Makefile
 5@@ -6,10 +6,16 @@ GO_TEST=go test -v -timeout 100ms -shuffle on -parallel `nproc`
 6 GO_BUILD=go build -v -ldflags '-w -s'
 7 GO_RUN=go run -v
 8 
 9-all: build sass
10+all: build
11 
12-build:
13+build: sass
14 	$(GO_BUILD) -o $(OUT) $(SERVER)
15+
16+compress: build
17+	upx -1 $(OUT)
18+
19+compress_into_oblivion: build
20+	upx --best --ultra-brute $(OUT)
21 
22 run: sass
23 	$(GO_RUN) $(SERVER) \