diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-07-26 14:15:00 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-07-26 14:15:00 (GMT) |
commit | a50c102f5a4736940563d40695b12f6c37be7035 (patch) | |
tree | eeace15572a607a372a89523ca1e6cfb4426879a /programs/Makefile | |
parent | f9e16d2ffb651ec27bf4729538433378eeb2acd7 (diff) | |
download | lz4-a50c102f5a4736940563d40695b12f6c37be7035.zip lz4-a50c102f5a4736940563d40695b12f6c37be7035.tar.gz lz4-a50c102f5a4736940563d40695b12f6c37be7035.tar.bz2 |
Added : Makefile : install for kFreeBSD and Hurd (Nobuhiro Iwamatsu)
Diffstat (limited to 'programs/Makefile')
-rw-r--r-- | programs/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/programs/Makefile b/programs/Makefile index 09df341..a84f916 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -30,7 +30,7 @@ # fullbench32: Same as fullbench, but forced to compile in 32-bits mode # ########################################################################## -RELEASE=r120 +RELEASE=rc121 DESTDIR= PREFIX=/usr CC:=$(CC) @@ -103,7 +103,9 @@ clean: @echo Cleaning completed -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)) install: lz4 lz4c @echo Installing binaries |