tweaking build scripts and moving buttons

This commit is contained in:
benfry
2002-07-28 01:07:28 +00:00
parent 0f4db9f2c3
commit 1763ebb512
2 changed files with 16 additions and 6 deletions

View File

@@ -10,7 +10,9 @@ rm -f processing.zip
cp -r ../shared processing
# something like the following might be better:
# find / -name "*.mp3" -exec rm -f {}\;
# and same for cvsignore
rm -rf processing/lib/CVS
rm -rf processing/fonts/CVS
rm -rf processing/reference/CVS
rm -rf processing/reference/images/CVS
rm -rf processing/sketchbook/CVS
@@ -30,7 +32,9 @@ cp -r work/lib/export processing/lib/
rm -rf processing/lib/export/CVS
# get platform-specific goodies from the dist dir
cp dist/run.bat work/
cp dist/run.bat
cp dist/run95.bat
cp dist/lib/pde.properties_windows processing/lib/
# convert notes.txt to windows LFs

View File

@@ -7,18 +7,24 @@ if test -d work
then
else
echo Setting up directories to build P5...
mkdir work
#mkdir work
cp -r ../shared work
unzip -q -d work jre.zip
cp -r ../shared/lib work/
rm -rf work/lib/CVS
#cp -r ../shared/lib work/
#rm -rf work/lib/CVS
#cp -r ../shared/sketchbook work/
#cp -r ../shared/reference work/
mkdir work/lib/export
mkdir work/lib/build
# this will copy cvs files intact, meaning that changes
# could be made and checked back in.. interesting
cp -r ../shared/sketchbook work/
cp -r ../shared/reference work/
mkdir work/classes
cp dist/run.bat work/
cp dist/lib/pde.properties_windows work/lib/
echo
fi