254fa65c7b
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18399 a1c6a512-1295-4272-9138-f99709370657
9 lines
170 B
Bash
Executable file
9 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
cat targets.txt | (
|
|
while read target model
|
|
do
|
|
make MODEL=$model TARGET=$target build
|
|
done
|
|
cp *.dll ../gui/bin
|
|
cp *.so ../gui/bin
|
|
)
|