Files
RockOS/build_programs.sh
2026-07-16 16:09:12 -05:00

16 lines
304 B
Bash
Executable File

#!/bin/bash
cd programs
ln -s ../sysroot sysroot 2>/dev/null
find "." -type f \( -name "Makefile" -o -name "makefile" \) | while read -r makefile_path; do
dir_path=$(dirname "$makefile_path")
(
cd "$dir_path" || exit
make clean
bear -- make
)
done
cd..