summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-08-13 15:44:44 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-08-13 15:44:44 (GMT)
commit4dc1eca5a922ad52b2a5babcca58e515b34050d4 (patch)
tree56963c5182eecfaa9e036497d3f6f0512b80805b /programs
parent19d3c36f1c730db0051491eb20d78a84503242e9 (diff)
downloadlz4-4dc1eca5a922ad52b2a5babcca58e515b34050d4.zip
lz4-4dc1eca5a922ad52b2a5babcca58e515b34050d4.tar.gz
lz4-4dc1eca5a922ad52b2a5babcca58e515b34050d4.tar.bz2
updated release number
Diffstat (limited to 'programs')
-rw-r--r--programs/Makefile15
-rw-r--r--programs/lz4cli.c2
2 files changed, 9 insertions, 8 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 05e98d2..d8d38f7 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -30,13 +30,14 @@
# fullbench32: Same as fullbench, but forced to compile in 32-bits mode
# ##########################################################################
-RELEASE=r121
-DESTDIR=
-PREFIX=/usr
-CC:=$(CC)
-CFLAGS?= -O3
-CFLAGS+= -std=c99 -Wall -Wextra -Wundef -Wshadow -Wstrict-prototypes -DLZ4_VERSION=\"$(RELEASE)\"
-FLAGS= -I.. $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
+RELEASE=r122
+
+DESTDIR?=
+PREFIX ?= /usr
+CC := $(CC)
+CFLAGS ?= -O3
+CFLAGS += -std=c99 -Wall -Wextra -Wundef -Wshadow -Wstrict-prototypes -DLZ4_VERSION=\"$(RELEASE)\"
+FLAGS = -I.. $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man/man1
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index e9b7506..1bbeda0 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -109,7 +109,7 @@
//****************************
#define COMPRESSOR_NAME "LZ4 Compression CLI"
#ifndef LZ4_VERSION
-# define LZ4_VERSION "v1.2.0"
+# define LZ4_VERSION "r122"
#endif
#define AUTHOR "Yann Collet"
#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s (%s) ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION, AUTHOR, __DATE__