UPX target added to Makefile.

Signed-off-by: Xiaomao Chen <xiaomao5@live.com>
This commit is contained in:
Quantum 2013-09-12 20:53:30 -04:00
parent 1cbf142bcc
commit 06b443137c

View file

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