fix `make` concurrency build (#277)
authorYann Collet <cyan@fb.com>
Thu, 15 Dec 2016 21:13:36 +0000 (22:13 +0100)
committerYann Collet <cyan@fb.com>
Thu, 15 Dec 2016 21:13:36 +0000 (22:13 +0100)
Makefile
NEWS

index 48e6752..c77f697 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,9 @@ endif
 
 .PHONY: default all lib lz4 clean test versionsTest examples
 
-default: lib lz4-release
+default:
+       @$(MAKE) -C $(LZ4DIR)
+       @$(MAKE) -C $(PRGDIR)
 
 all:
        @$(MAKE) -C $(LZ4DIR) $@
diff --git a/NEWS b/NEWS
index 292cd27..ff62ca8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ v1.7.5
 cli : fix minor notification when using -r recursive mode
 lz4cat : fix : works with relative path (#284) and stdin (#285) (reported by @beiDei8z)
 doc : markdown version of man page, by Takayuki Matsuoka (#279)
+build : Makefile : fix concurrency lib+exe build (#277)
 
 v1.7.4.2
 fix : Makefile : release build compatible with PIE and customized compilation directives provided through environment variables (#274, reported by Antoine Martin)