2005-08-25 23:06:28 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2005-09-21 22:34:06 +02:00
|
|
|
CLASSPATH=java/lib/rt.jar:lib:lib/build:lib/pde.jar:lib/core.jar:lib/antlr.jar:lib/oro.jar:lib/registry.jar:lib/mrj.jar:lib/RXTXcomm.jar
|
2005-08-25 23:06:28 +02:00
|
|
|
export CLASSPATH
|
|
|
|
|
|
|
|
# put the directory where this file lives in the front of the path, because
|
|
|
|
# that directory also contains jikes, which we will need at runtime.
|
|
|
|
#
|
2006-12-25 21:58:37 +01:00
|
|
|
PATH=`pwd`/tools:${PATH}
|
2005-08-25 23:06:28 +02:00
|
|
|
export PATH
|
|
|
|
|
2005-09-21 22:34:06 +02:00
|
|
|
# put the directory with the native RXTX libs in the library path
|
|
|
|
LD_LIBRARY_PATH=`pwd`/lib:${LD_LIBRARY_PATH}
|
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
|
2006-12-02 23:18:58 +01:00
|
|
|
java processing.app.Base
|