#!/bin/sh # Part of the Arduino project # http://arduino.berlios.de # # this is derived from the processing project # http://www.processing.org # # This file is subjected to the GPL License # ### -- SETUP WORK DIR ------------------------------------------- if test -d work then BUILD_PREPROC=false else BUILD_PREPROC=true # needs to make the dir because of packaging goofiness echo Setting up directories to build under Mac OS X mkdir -p work/classes/processing/app/preproc mkdir -p work/classes/processing/app/syntax mkdir -p work/classes/processing/app/tools mkdir -p work/lib/build #mkdir -p work/examples cp dist/librxtxSerial.jnilib work/ cp -pR dist/drivers work/ # to have a copy of this guy around for messing with echo Copying Arduino.app... cp -pR dist/Arduino.app work/ # cvs doesn't seem to want to honor the +x bit chmod +x work/Arduino.app/Contents/MacOS/JavaApplicationStub #echo Extracting examples... #unzip -d work/examples ../shared/dist/examples.zip cp -pR ../shared/ # copy the avr-gcc distribution echo Copying tools \(this may take a minute\)... cp -pR dist/tools.zip work/ cd work unzip -oq tools.zip rm tools.zip cd .. # get jikes and depedencies echo Copying jikes... cp dist/jikes work/ chmod +x work/jikes fi echo Copying shared files... cp -r ../shared/* work echo Copying targets... # make sure there's no cruft in the targets folder rm -rf work/lib/targets cp -r ../../targets work/lib/ echo Copying dist files... cp -r dist/bootloader work/ ### -- START BUILDING ------------------------------------------- # move to root 'arduino' directory cd ../.. ### -- BUILD GCC ------------------------------------------------ # in the future we will build avr-gcc and tools (if they don't exist) ### -- BUILD BOOTLOADER ---------------------------------------- cd bootloader export DIRAVR=../build/macosx/work/tools/avr make cp ATmegaBOOT.hex ../build/macosx/work/bootloader cd .. ### -- BUILD JAVA ----------------------------------------------- # set classpath CLASSPATH=/System/Library/Frameworks/JavaVM.framework/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Classes/ui.jar:/System/Library/Java/Extensions/MRJToolkit.jar export CLASSPATH cd app ### -- BUILD PARSER --------------------------------------------- if test -f preproc/expandedpde.g then echo else cd preproc # build classes/grammar for preprocessor echo Building antlr grammar code... # first build the default java goop java -cp ../../build/macosx/work/lib/antlr.jar antlr.Tool StdCParser.g # now build the pde stuff that extends the java classes java -cp ../../build/macosx/work/lib/antlr.jar antlr.Tool -glib StdCParser.g WParser.g java -cp ../../build/macosx/work/lib/antlr.jar antlr.Tool WTreeParser.g java -cp ../../build/macosx/work/lib/antlr.jar antlr.Tool -glib WTreeParser.g WEmitter.g cd .. fi ### -- BUILD PDE ------------------------------------------------ echo Building the PDE... # compile the code as java 1.3, so that the application will run and # show the user an error, rather than crapping out with some strange # "class not found" crap ../build/macosx/work/jikes -target 1.3 +D -classpath ../build/macosx/work/classes:../build/macosx/work/lib/antlr.jar:../build/macosx/work/lib/oro.jar:../build/macosx/work/lib/registry.jar:../build/macosx/work/lib/RXTXcomm.jar:$CLASSPATH -d ../build/macosx/work/classes tools/*.java preproc/*.java syntax/*.java *.java cd ../build/macosx/work/classes rm -f ../lib/pde.jar zip -0rq ../lib/pde.jar . cd ../.. # get the libs mkdir -p work/Arduino.app/Contents/Resources/Java/ cp work/lib/*.jar work/Arduino.app/Contents/Resources/Java/ echo echo Done.