make (b746a1a2860f4a918f32d10dc569115d282aaf2f) make (7b1642f2fc1e1f20948e806b7ce319f660633342)
1include ../scripts/Makefile.include
2
3ifndef MK
4ifeq ($(MAKECMDGOALS),)
5# no target specified, trigger the whole suite
6all:
7 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
8 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1

--- 14 unchanged lines hidden (view full) ---

23 ifeq ($(SET_O),1)
24 O_OPT := 'O=$(FULL_O)'
25 endif
26 K_O_OPT := 'O=$(FULL_O)'
27endif
28
29PARALLEL_OPT=
30ifeq ($(SET_PARALLEL),1)
1include ../scripts/Makefile.include
2
3ifndef MK
4ifeq ($(MAKECMDGOALS),)
5# no target specified, trigger the whole suite
6all:
7 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
8 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1

--- 14 unchanged lines hidden (view full) ---

23 ifeq ($(SET_O),1)
24 O_OPT := 'O=$(FULL_O)'
25 endif
26 K_O_OPT := 'O=$(FULL_O)'
27endif
28
29PARALLEL_OPT=
30ifeq ($(SET_PARALLEL),1)
31 cores := $(shell (getconf _NPROCESSORS_ONLN || egrep -c '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
32 ifeq ($(cores),0)
33 cores := 1
31 ifeq ($(JOBS),)
32 cores := $(shell (getconf _NPROCESSORS_ONLN || egrep -c '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
33 ifeq ($(cores),0)
34 cores := 1
35 endif
36 else
37 cores=$(JOBS)
34 endif
35 PARALLEL_OPT="-j$(cores)"
36endif
37
38# As per kernel Makefile, avoid funny character set dependencies
39unexport LC_ALL
40LC_COLLATE=C
41LC_NUMERIC=C

--- 332 unchanged lines hidden ---
38 endif
39 PARALLEL_OPT="-j$(cores)"
40endif
41
42# As per kernel Makefile, avoid funny character set dependencies
43unexport LC_ALL
44LC_COLLATE=C
45LC_NUMERIC=C

--- 332 unchanged lines hidden ---