From ce8393e8d7c55e69c73ccff0c37c32f5b0e86b6c Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 6 Nov 2017 15:20:08 -0800 Subject: [PATCH] build: minor : `make lz4` doesn't compile liblz4 anymore since it's not needed. --- Makefile | 6 +++--- 1 file 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) $@ -- 2.7.4