summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-12-15 21:13:36 (GMT)
committerYann Collet <cyan@fb.com>2016-12-15 21:13:36 (GMT)
commit913b98fd6fe814ee4c719a90a0642497c9d3d0dc (patch)
tree5181f1ddb41525b9bf33858b9a4297756f46e776 /Makefile
parentfec57e49eaee4bf2926c9c2a4071d8f109e3ba71 (diff)
downloadlz4-913b98fd6fe814ee4c719a90a0642497c9d3d0dc.zip
lz4-913b98fd6fe814ee4c719a90a0642497c9d3d0dc.tar.gz
lz4-913b98fd6fe814ee4c719a90a0642497c9d3d0dc.tar.bz2
fix `make` concurrency build (#277)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 48e6752..c77f697 100644
--- 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) $@