mirror of
https://github.com/brain-hackers/buildbrain
synced 2024-11-13 13:58:01 +09:00
Guess the number of cores automatically
This commit is contained in:
parent
619501c921
commit
32f8ca5e40
6
Makefile
6
Makefile
@ -1,3 +1,5 @@
|
||||
JOBS=$(shell grep -c '^processor' /proc/cpuinfo)
|
||||
|
||||
export ARCH=arm
|
||||
export CROSS_COMPILE=arm-linux-gnueabi-
|
||||
|
||||
@ -27,7 +29,7 @@ umenuconfig:
|
||||
|
||||
.PHONY:
|
||||
ubuild:
|
||||
make -j12 -C ./u-boot-brain u-boot.sb
|
||||
make -j$(JOBS) -C ./u-boot-brain u-boot.sb
|
||||
|
||||
.PHONY:
|
||||
ldefconfig:
|
||||
@ -44,7 +46,7 @@ lsavedefconfig:
|
||||
|
||||
.PHONY:
|
||||
lbuild:
|
||||
make -C ./linux-brain -j12
|
||||
make -j$(JOBS) -C ./linux-brain
|
||||
|
||||
.PHONY:
|
||||
uuu:
|
||||
|
Loading…
Reference in New Issue
Block a user