9 lines
272 B
Bash
9 lines
272 B
Bash
|
|
export SYSROOT="$PWD/sysroot"
|
|
export MAKEFLAGS=-j$(nproc)
|
|
export LC_ALL=POSIX
|
|
export TARGET=x86_64-axe-linux-gnu
|
|
export SOURCES="$PWD/sources"
|
|
export PATH="$SYSROOT/cross/bin:/usr/bin:/usr/sbin"
|
|
export CONFIG_SITE="$SYSROOT/usr/share/config.site"
|
|
export PROJECTDIR="$PWD" |