rockbox/tools/checkwps/buildall.sh
Dave Chapman 61f1735c59 Prevent the user from running "make" directly - it should only be invoked by the buildall.sh script
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16834 a1c6a512-1295-4272-9138-f99709370657
2008-03-27 00:00:53 +00:00

8 lines
163 B
Bash
Executable file

#!/bin/sh
cat targets.txt | (
while read target model
do
rm -f checkwps.$model
make MODEL=$model TARGET=$target checkwps.$model
done
)