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) \