summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-11-06 23:20:08 (GMT)
committerYann Collet <cyan@fb.com>2017-11-06 23:20:08 (GMT)
commitce8393e8d7c55e69c73ccff0c37c32f5b0e86b6c (patch)
tree87f8a01bef350f67e04bc1c656d6f778867e739f /Makefile
parent263e398a52e8c11f9add2be8df29d48be16e3f93 (diff)
downloadlz4-ce8393e8d7c55e69c73ccff0c37c32f5b0e86b6c.zip
lz4-ce8393e8d7c55e69c73ccff0c37c32f5b0e86b6c.tar.gz
lz4-ce8393e8d7c55e69c73ccff0c37c32f5b0e86b6c.tar.bz2
build: minor : `make lz4` doesn't compile liblz4 anymore
since it's not needed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index da485a1..76fc9a8 100644
--- a/Makefile
+++ b/Makefile
@@ -57,12 +57,12 @@ all: allmost manuals
.PHONY: allmost
allmost: lib lz4 examples
-.PHONY: lib lib-release
-lib lib-release:
+.PHONY: lib lib-release liblz4.a
+lib lib-release liblz4.a:
@$(MAKE) -C $(LZ4DIR) $@
.PHONY: lz4 lz4-release
-lz4 : lib
+lz4 : liblz4.a
lz4-release : lib-release
lz4 lz4-release :
@$(MAKE) -C $(PRGDIR) $@