rockbox/utils/wpseditor/libwps/buildall.sh
Dominik Wenger 254fa65c7b WpsEditor: commit FS#9344 by Rostislav Chekan - multitarget support (only colour targets for now)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18399 a1c6a512-1295-4272-9138-f99709370657
2008-09-03 19:24:50 +00:00

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
)