From 469acb67823af6e4c97d4216867dffac6d234fc7 Mon Sep 17 00:00:00 2001 From: Aren Date: Wed, 22 Nov 2023 19:16:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D0=BF=D0=B5=D1=80=D1=8C=20=D0=BC?= =?UTF-8?q?=D0=BE=D0=B4=D1=83=D0=BB=D0=B8=20=D0=B0=D0=B2=D1=82=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=B8=20=D1=81=D0=BE?= =?UTF-8?q?=D0=B1=D0=B8=D1=80=D0=B0=D1=8E=D1=82=D1=81=D1=8F=20=D0=B1=D0=B5?= =?UTF-8?q?=D0=B7=20=D1=83=D0=BA=D0=B0=D0=B7=D0=B0=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=83=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/build.sh b/build.sh index 1508181..30799da 100755 --- a/build.sh +++ b/build.sh @@ -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 \ No newline at end of file