From: Jens Steube Date: Sat, 5 Dec 2015 13:30:09 +0000 (+0100) Subject: Remove NPROCS from Makefile, make is able to automatically detect the optimal number... X-Git-Tag: v3.00-beta~607 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=e5adccbf3804d58cb4beb8f06797c0ba179043c6;p=hashcat.git Remove NPROCS from Makefile, make is able to automatically detect the optimal number of parallel threads --- diff --git a/src/Makefile b/src/Makefile index 2e06169..47a396b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,17 +4,16 @@ ## ## -## Detect number of processors +## Detect host OS ## -NPROCS := $(shell grep -c ^processor /proc/cpuinfo) OS := $(shell uname) ## ## Makefile flags ## -MAKEFLAGS += -l -j $(NPROCS) -rR --no-print-directory +MAKEFLAGS += -l -j -rR --no-print-directory ifneq ($(findstring clean,$(MAKECMDGOALS)),) MAKEFLAGS += -j 1