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

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 #!/bin/sh
cd modules/ cd modules/
mkdir -p bin mkdir -p bin
dos2unix */*.sh dos2unix */*.sh
#cd helloworld/ && chmod +x build.sh && ./build.sh && cd .. chmod +x */build.sh
#cd music/ && chmod +x build.sh && ./build.sh && cd ..
cd simd/ && chmod +x build.sh && ./build.sh && cd .. for dir in */; do
cd cpubench/ && chmod +x build.sh && ./build.sh && cd .. if [ $dir != "bin/" ]; then
cd pci/ && chmod +x build.sh && ./build.sh && cd .. cd $dir && ./build.sh && cd ..
cd pci_data/ && chmod +x build.sh && ./build.sh && cd .. fi
done
cd .. cd ..
python3 pbuild.py python3 pbuild.py