Files
RockOS/clean.sh

23 lines
335 B
Bash
Raw Normal View History

2026-07-01 20:00:22 -05:00
#!/bin/bash
cd rocklibc
make clean
cd ..
2026-07-14 23:06:50 -05:00
cd programs
2026-07-14 23:15:37 -05:00
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
)
done
2026-07-14 23:06:50 -05:00
cd ..
2026-07-01 20:00:22 -05:00
2026-07-14 23:15:37 -05:00
make clean
2026-07-01 20:00:22 -05:00
cd initrd
rm -rf output
2026-07-14 23:15:37 -05:00
rm -f bin/*.elf
2026-07-14 23:06:50 -05:00
cd ..