This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: .jar files.
- To: Paul_Kunz at slac dot stanford dot edu
- Subject: Re: .jar files.
- From: Tom Tromey <tromey at redhat dot com>
- Date: 22 Jan 2001 11:41:50 -0700
- Cc: automake at gnu dot org
- List-Id: Discussion list for automake <automake.gnu.org><mailto:automake-request@gnu.org?subject=unsubscribe>
- References: <200101220134.RAA04653@libra.slac.stanford.edu>
- Reply-To: tromey at redhat dot com
>>>>> "Paul" == Paul F Kunz <Paul_Kunz@slac.stanford.edu> writes:
Paul> I'm trying to get automake to build a Makefile that will update
Paul> the project's `.jar' file whenenver any `.java' files get
Paul> compiled. No success so far. Can someone give me a solution to
Paul> this?
Unfortunately there isn't yet a built-in way to do this. I think this
would be a logical addition to the existing Java support, though.
You can probably do it by hand:
foo_DATA = my.jar
my.jar: $(my_java_sources)
...
Tom