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.
diff --git a/Makefile b/Makefile
index 6987ced4c27219ed7fb0b4e45a4eefb88894765c..c40550f3511468aef34845a655475bfd1feb8f26 100644
--- a/Makefile
+++ b/Makefile
@@ -6,10 +6,16 @@ GO_TEST=go test -v -timeout 100ms -shuffle on -parallel `nproc`
 GO_BUILD=go build -v -ldflags '-w -s'
 GO_RUN=go run -v
 
-all: build sass
+all: build
 
-build:
+build: sass
 	$(GO_BUILD) -o $(OUT) $(SERVER)
+
+compress: build
+	upx -1 $(OUT)
+
+compress_into_oblivion: build
+	upx --best --ultra-brute $(OUT)
 
 run: sass
 	$(GO_RUN) $(SERVER) \