At 01:55 AM 12/14/99 GMT, Stephane Kasriel wrote:
>Hi,
>I am sorry if this was asked already, but I could not find an answer in the
>list:
>I am trying to use 'make' with my JDE project, but it seems that JDE first
>'cd''s to my file's directory and tries to look for make there. My make file
>is at the top of my build directory:
>I have several packages, say p1, p2 and p3 so my directory structure is
><home> (my Makefile)
>  <p1> (some .java files)
>  <p2> (some .java files)
>  <p3> (some .java files)
>
>
>How can I force JDE to use the Makefile under <home> rather than under <p1>?
>

Set the variable jde-make-args to include the -f and -C command line
arguments for the make utility. Use the -f argument to specify the location
of your make file. Use the -C argument to cause make to switch to the
directory from which you want your makefile to run. See the make
documentation for more information on these arguments.

I use these arguments all the time to run top-level makefiles. It works
like a charm.

- Paul

Reply via email to