summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-07-26 14:15:00 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-07-26 14:15:00 (GMT)
commita50c102f5a4736940563d40695b12f6c37be7035 (patch)
treeeeace15572a607a372a89523ca1e6cfb4426879a /Makefile
parentf9e16d2ffb651ec27bf4729538433378eeb2acd7 (diff)
downloadlz4-a50c102f5a4736940563d40695b12f6c37be7035.zip
lz4-a50c102f5a4736940563d40695b12f6c37be7035.tar.gz
lz4-a50c102f5a4736940563d40695b12f6c37be7035.tar.bz2
Added : Makefile : install for kFreeBSD and Hurd (Nobuhiro Iwamatsu)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cfbaed4..c231652 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@
# ################################################################
# Version numbers
-VERSION=120
+VERSION=121
export RELEASE=r$(VERSION)
LIBVER_MAJOR=`sed -n '/LZ4_VERSION_MAJOR/s/.*\s\+\([0-9]\+\).*/\1/p' < lz4.h`
LIBVER_MINOR=`sed -n '/LZ4_VERSION_MINOR/s/.*\s\+\([0-9]\+\).*/\1/p' < lz4.h`
@@ -109,9 +109,8 @@ clean:
#------------------------------------------------------------------------
-#make install option is designed for Linux & OSX targets only
-
-ifneq (,$(filter $(shell uname),Linux Darwin))
+#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
+ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
liblz4.pc: liblz4.pc.in Makefile
sed -e 's|@PREFIX@|$(PREFIX)|' \