2025-11-12 11:22:44 -07:00
|
|
|
# musllvm default flags
|
2025-11-15 13:08:46 -07:00
|
|
|
# --------------------------------
|
|
|
|
|
# feel free to change these however you like
|
|
|
|
|
#
|
2025-11-12 11:22:44 -07:00
|
|
|
|
2025-11-15 13:08:46 -07:00
|
|
|
#
|
|
|
|
|
# these are shared between the Makefile and scripts
|
|
|
|
|
#
|
2025-11-15 00:59:38 -07:00
|
|
|
ARCH=$(shell uname -m)
|
2025-11-15 20:00:42 -07:00
|
|
|
PROOT=${PWD}
|
|
|
|
|
SOURCES_FILE=${PROOT}/sources.list
|
2025-11-15 00:59:38 -07:00
|
|
|
FROOT="${ARCH}-musllvm"
|
2025-11-15 20:00:42 -07:00
|
|
|
CROSS="${PROOT}/build/cross" # cross directory
|
2025-11-15 13:08:46 -07:00
|
|
|
|
|
|
|
|
# MAKEFLAGS to parse the amounto of cores used
|
|
|
|
|
MAKEFLAGS="-j$(shell nproc) -l$(shell nproc)"
|