This commit is contained in:
David Cuartielles 2005-09-10 20:31:09 +00:00
parent 3099c4f2de
commit 01e91e204e
1 changed files with 10 additions and 1 deletions

View File

@ -64,7 +64,7 @@ else
mkdir work/tools mkdir work/tools
cp dist/avr_tools.zip . cp dist/avr_tools.zip .
echo Extracting avr tools ... echo Extracting avr tools ...
unzip -q -d work avr.zip unzip -q -d work avr_tools.zip
rm -f avr_tools.zip rm -f avr_tools.zip
cp dist/tools/*.* work/tools cp dist/tools/*.* work/tools
cp dist/lib/makefile.win work/Makefile cp dist/lib/makefile.win work/Makefile
@ -72,6 +72,15 @@ else
cp ../../../core/*.* work/core cp ../../../core/*.* work/core
cp dist/core/makefile.win work/core/Makefile cp dist/core/makefile.win work/core/Makefile
# take care of the examples
mkdir work/examples
cd work/examples
cp ../shared/dist/examples.zip .
echo Extracting examples ...
unzip -q -d . examples.zip
rm -f examples.zip
cd ../..
# chmod +x the crew # chmod +x the crew
find work -name "*.dll" -exec chmod +x {} ';' find work -name "*.dll" -exec chmod +x {} ';'
find work -name "*.exe" -exec chmod +x {} ';' find work -name "*.exe" -exec chmod +x {} ';'