- quick and dirty script to run make again in every build-* directory

This commit is contained in:
Bryce Denney 2002-09-23 17:57:18 +00:00
parent 140abecb87
commit 091e7ee721

10
bochs/build/makeall.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
for i in build-*; do
echo "*** Starting make in $i ***"
make -C $i
echo "*** make done in $i ***"
echo ""
echo ""
echo ""
done