rockbox/tools/checkwps/buildall.sh
Dominik Riebeling c9a11d534d extend Makefile to allow building checkwps on cygwin and MinGW. Make make call a bit easier -- no need to pass the model twice.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17477 a1c6a512-1295-4272-9138-f99709370657
2008-05-12 18:30:18 +00:00

8 lines
156 B
Bash
Executable file

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