From 9859d8ef48542b19f017d736c4f159ac1537e5dc Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 12 Sep 2013 20:53:30 -0400 Subject: [PATCH] UPX target added to Makefile. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 4d78468..a06ca7d 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,9 @@ FILES=$(OUTDIR)\Keyboard.obj \ all: initdir $(DISTDIR)\Keyboard.exe +upx: all + upx --best $(DISTDIR)\Keyboard.exe + initdir: @if not exist build md build @if not exist $(OUTDIR) md $(OUTDIR)