Теперь модули автоматически собираются без указания пути

This commit is contained in:
Aren 2023-11-22 19:16:03 +03:00
parent 01f7054d55
commit 469acb6782
1 changed files with 10 additions and 6 deletions

View File

@ -1,12 +1,16 @@
#!/bin/sh
cd modules/
mkdir -p bin
dos2unix */*.sh
#cd helloworld/ && chmod +x build.sh && ./build.sh && cd ..
#cd music/ && chmod +x build.sh && ./build.sh && cd ..
cd simd/ && chmod +x build.sh && ./build.sh && cd ..
cd cpubench/ && chmod +x build.sh && ./build.sh && cd ..
cd pci/ && chmod +x build.sh && ./build.sh && cd ..
cd pci_data/ && chmod +x build.sh && ./build.sh && cd ..
chmod +x */build.sh
for dir in */; do
if [ $dir != "bin/" ]; then
cd $dir && ./build.sh && cd ..
fi
done
cd ..
python3 pbuild.py