summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-11-23 17:36:04 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-11-23 17:36:04 (GMT)
commit86fa21b3019d7e9983704661966a64f5aa1456bf (patch)
treeb10475e868ee13122993d3ce3b4c78342b642cc0 /Makefile
parent2ad37dbe58eb3709e5dee16ebcf345bd53680f85 (diff)
downloadlz4-86fa21b3019d7e9983704661966a64f5aa1456bf.zip
lz4-86fa21b3019d7e9983704661966a64f5aa1456bf.tar.gz
lz4-86fa21b3019d7e9983704661966a64f5aa1456bf.tar.bz2
Added : $(EXT) within install for cross-compilation support
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)