From 1763ebb512fb5fbe7340c885108f38ca4e93bbd7 Mon Sep 17 00:00:00 2001 From: benfry Date: Sun, 28 Jul 2002 01:07:28 +0000 Subject: [PATCH] tweaking build scripts and moving buttons --- build/windows/dist.sh | 6 +++++- build/windows/make.sh | 16 +++++++++++----- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/build/windows/dist.sh b/build/windows/dist.sh index b2e39eda3..0a146bcb7 100755 --- a/build/windows/dist.sh +++ b/build/windows/dist.sh @@ -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 diff --git a/build/windows/make.sh b/build/windows/make.sh index f83c2eb9e..fd233c574 100755 --- a/build/windows/make.sh +++ b/build/windows/make.sh @@ -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