From e63d2ecd14a11846a89f8e5b03c97da7484ba50f Mon Sep 17 00:00:00 2001 From: lcferrum Date: Thu, 7 Sep 2017 20:18:11 +0400 Subject: [PATCH] Stub for 1.2 --- SuiteVersion.h | 4 ++-- makefile | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/SuiteVersion.h b/SuiteVersion.h index 14fae44..e3e2fa0 100644 --- a/SuiteVersion.h +++ b/SuiteVersion.h @@ -3,10 +3,10 @@ #define SNK_HS_TITLE L"HotkeySuite" -#define _HS_DEV_BUILD 0 //SET TO 0 ON RELEASE COMMIT +#define _HS_DEV_BUILD 1 //SET TO 0 ON RELEASE COMMIT #define _HS_MAJ_VERSION 1 //UPDATE THIS DEFINE ON VERSION CHANGE -#define _HS_MIN_VERSION 1 //UPDATE THIS DEFINE ON VERSION CHANGE +#define _HS_MIN_VERSION 2 //UPDATE THIS DEFINE ON VERSION CHANGE #define __STRINGIFY(x) #x #define _STRINGIFY(x) __STRINGIFY(x) diff --git a/makefile b/makefile index ba6f028..a68e775 100644 --- a/makefile +++ b/makefile @@ -5,10 +5,13 @@ # Cleans directory of executables # make upx # Pack executables with upx +# make install +# Makes installer, requires compiled SnK binary residing in adjacent directory (../snk) +# Under MSYS 1.0 fails because of posix path conversion - use mingw32-make for this target # make UPSTREAM_INC=PATH # Change include path for clang++ 3.6.2 and g++ 4.7.2 (default is /c/cygwin/usr/i686-w64-mingw32/sys-root/mingw/include/) # make DEBUG=LEVEL -# Makes debug build +# Makes debug build (currently only level 1 supported) # Conditionals ifeq (,$(if $(filter-out upx install clean,$(MAKECMDGOALS)),,$(MAKECMDGOALS)))