summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-05-06 01:29:04 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-05-06 01:29:04 (GMT)
commitefbebd2a9955c6a6eabc558f00643abb4690edac (patch)
treea0804e18c9594f2ee9c9c2ee933900fc991c67c1 /lib/Makefile
parent1c3e633c48766c58df949887297dc5838170a33f (diff)
downloadlz4-efbebd2a9955c6a6eabc558f00643abb4690edac.zip
lz4-efbebd2a9955c6a6eabc558f00643abb4690edac.tar.gz
lz4-efbebd2a9955c6a6eabc558f00643abb4690edac.tar.bz2
Added : LZ4_compress_destSize()
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 8aa15de..ef671d3 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -31,7 +31,7 @@
# ################################################################
# Version numbers
-VERSION ?= 128
+VERSION ?= 129
LIBVER_MAJOR=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`
LIBVER_MINOR=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`
LIBVER_PATCH=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`
@@ -40,7 +40,7 @@ LIBVER=$(LIBVER_MAJOR).$(LIBVER_MINOR).$(LIBVER_PATCH)
DESTDIR?=
PREFIX ?= /usr/local
CFLAGS ?= -O3
-CFLAGS += -I. -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -pedantic
+CFLAGS += -I. -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wcast-qual Wstrict-prototypes -pedantic
LIBDIR?= $(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include