Delivered-To: listarch-cygwin@sourceware.cygnus.com Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm Sender: cygwin-owner@sourceware.cygnus.com Delivered-To: mailing list cygwin@sourceware.cygnus.com Message-Id: <199902171652.3433214.6@www.web-alive.com> From: "Henry J. Cobb" To: jcollins@key-tech.net CC: cygwin@sourceware.cygnus.com In-reply-to: (message from John Collins on Wed, 17 Feb 1999 17:56:53 -0600) Subject: Re: Filename problems using Java compiler Reply-to: hcobb@telegenisys.com References: I already posted my fix to getting Java to compile a while back. # Makefile JAVA_CLASSES = Foo.class FooBar.class all: $(JAVA_CLASSES) # Each class file depends on its java file %.class: %.java $(JAVA_COMPILER) $(JAVA_CSWITCH) $< @cp -v $(@:.class=)*.class $(INSTALL_DIR) #Note that INSTALL_DIR is on the local classpath #Note that javac is getting passed the proper name casing # Additonal dependencies for each target FooBar.class: Foo.class # Braindead eNp-Ty make.exe workarounds when cases differ Foo.class: Foo.java FooBar.class: FooBar.java -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe@sourceware.cygnus.com