10 lines
286 B
Bash
10 lines
286 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 BUILD=$PWD/build
|
|
export PATH=$SYSROOT/cross/bin:/usr/bin:/usr/sbin
|
|
export CONFIG_SITE=$SYSROOT/usr/share/config.site
|
|
export PROJECTDIR=$PWD |