You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by "Martin, Stephen" <St...@gs.com> on 2000/05/19 18:09:13 UTC

Using ant with Emacs/JDE

Is anyone using ant with emacs and JDE. If so how do you have it
set up? How well does it work? Is it possible to get emacs to pass ant 
buffer specific targets?

Steve
--
|-------|                                      Stephen Martin
|Goldman|                                      Stephen.Martin@gs.com
|Sachs  |                                      125 Broad St.
|       |                                      NY, NY. USA
|_______|                                      (212)357-9194

Re: Using ant with Emacs/JDE

Posted by Chris Cheetham <ch...@fooware.com>.
Works fine.  Create a shell script in your path, say 'buildfoo,' and
change the JDE build command from 'make' to 'buildfoo.'  'buildfoo' looks
something like:

    #!/bin/sh

    opwd=`pwd`
    cd foo       # where foo is your project top dir
    ./build.sh $@
    cd $opwd

"Martin, Stephen" wrote:

> Is anyone using ant with emacs and JDE. If so how do you have it
> set up? How well does it work? Is it possible to get emacs to pass ant
> buffer specific targets?
>
> Steve
> --
> |-------|                                      Stephen Martin
> |Goldman|                                      Stephen.Martin@gs.com
> |Sachs  |                                      125 Broad St.
> |       |                                      NY, NY. USA
> |_______|                                      (212)357-9194