Set envs if it's not set

This commit is contained in:
Takumi Sueda 2022-09-22 14:52:29 +09:00
parent 462651541a
commit 3817fc5eeb
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
JOBS=$(shell grep -c '^processor' /proc/cpuinfo)
UBOOT_CROSS=$(shell ./tools/getcross u-boot)
LINUX_CROSS=$(shell ./tools/getcross linux)
ROOTFS_CROSS=$(shell ./tools/getcross rootfs)
UBOOT_CROSS?=$(shell ./tools/getcross u-boot)
LINUX_CROSS?=$(shell ./tools/getcross linux)
ROOTFS_CROSS?=$(shell ./tools/getcross rootfs)
export ARCH=arm
.PHONY: