Ver Fonte

build.sh should now build all available targets

Till Klocke há 9 anos atrás
pai
commit
0a3d396b58
1 ficheiros alterados com 6 adições e 1 exclusões
  1. 6 1
      docker/build.sh

+ 6 - 1
docker/build.sh

@@ -15,7 +15,12 @@ cp -r /usr/src/i18n gluon/site/
 # Build
 cd gluon
 make update
-time make -j $(($(nproc)+1)) BROKEN=1 GLUON_TARGET=ar71xx-generic
+
+for target in $(ls targets)
+do
+	echo "Building for target $target"
+	time make -j $(($(nproc)+1)) BROKEN=1 GLUON_TARGET=$target
+done
 
 set +x
 echo -e "\nBUILD FINISHED\n"