summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-11-30 12:54:04 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-11-30 12:54:04 (GMT)
commitdee47d11be17aec91a16a6381ea321b4d79f4200 (patch)
treee478b0dde6dc6f5d301078b6051c0c87e05a4046 /Makefile
parent73554386ed8c9b08940411c0e62bbdca3216f8cd (diff)
parentd0a6cccf75e147301b430a43bc9e591fdd80fce9 (diff)
downloadlz4-dee47d11be17aec91a16a6381ea321b4d79f4200.zip
lz4-dee47d11be17aec91a16a6381ea321b4d79f4200.tar.gz
lz4-dee47d11be17aec91a16a6381ea321b4d79f4200.tar.bz2
Merge pull request #36 from Cyan4973/AlignEndian
Align endian
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 586ac5e..c2bbd57 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@
# ################################################################
# Version numbers
-VERSION=124
+VERSION=125
export RELEASE=r$(VERSION)
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`
@@ -50,13 +50,6 @@ PRGDIR = programs
DISTRIBNAME=lz4-$(RELEASE).tar.gz
-# Define *.exe as extension for Windows systems
-ifneq (,$(filter Windows%,$(OS)))
-EXT =.exe
-else
-EXT =
-endif
-
# OS X linker doesn't support -soname, and use different extension
# see : https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html
ifeq ($(shell uname), Darwin)