diff options
author | ehilsdal <ehilsdal> | 2003-09-09 18:26:18 +0000 |
---|---|---|
committer | ehilsdal <ehilsdal> | 2003-09-09 18:26:18 +0000 |
commit | ab504b46ba5585a43018026976a44a5ccefcfe7c (patch) | |
tree | f13d9793053ac5100107e8f83364f50dc254dc4b /docs/teaching/exercises/scripts/setpaths.sh | |
parent | 1553a17192f29f74f7e7c065916d745d31bda4f8 (diff) | |
download | aspectj-ab504b46ba5585a43018026976a44a5ccefcfe7c.tar.gz aspectj-ab504b46ba5585a43018026976a44a5ccefcfe7c.zip |
added in building architecture for turoial exercises
Diffstat (limited to 'docs/teaching/exercises/scripts/setpaths.sh')
-rwxr-xr-x | docs/teaching/exercises/scripts/setpaths.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/teaching/exercises/scripts/setpaths.sh b/docs/teaching/exercises/scripts/setpaths.sh new file mode 100755 index 000000000..f54f3dfaf --- /dev/null +++ b/docs/teaching/exercises/scripts/setpaths.sh @@ -0,0 +1,18 @@ +# this file should be sourced, NOT executed + +# Change this to be the full path for this directory +EXTRACTION=$HOME/aj-@aj.event@ + +if [ "$JAVA_HOME" = "" ] +then + echo Please remember to manually set $JAVA_HOME to + echo the location of your java installation +fi + +export ASPECTJ_HOME=$EXTRACTION/aspectj +export PATH=$ASPECTJ_HOME/bin:$PATH +export CLASSPATH=.:$ASPECTJ_HOME/lib/aspectjrt.jar:$EXTRACTION/junit.jar + +chmod a+x $ASPECTJ_HOME/bin/ajc +chmod a+x $ASPECTJ_HOME/bin/ajbrowser + |