chiark / gitweb /
Find a suitable Java compiler. If there isn't one, don't compile the
[anag] / Makefile.am
index 84ea36f07dac929424a5c584b6bc0cebb863c38c..19dc30f4e64af478b2c9873f61625a6ca1419c10 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-makefile-*-
 ##
 ## -*-makefile-*-
 ##
-## $Id: Makefile.am,v 1.4 2001/02/06 09:38:46 mdw Exp $
+## $Id: Makefile.am,v 1.5 2001/02/06 10:06:25 mdw Exp $
 ##
 ## Makefile for Anag
 ##
 ##
 ## Makefile for Anag
 ##
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.am,v $
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.am,v $
+## Revision 1.5  2001/02/06 10:06:25  mdw
+## Find a suitable Java compiler.  If there isn't one, don't compile the
+## Java bits.
+##
 ## Revision 1.4  2001/02/06 09:38:46  mdw
 ## Remove redundant rule.
 ##
 ## Revision 1.4  2001/02/06 09:38:46  mdw
 ## Remove redundant rule.
 ##
 ##
 
 AUTOMAKE_OPTIONS = foreign
 ##
 
 AUTOMAKE_OPTIONS = foreign
+javadir = datadir/java
+
+JAVAC = @JAVAC@
+
 SUFFIXES = .java .class
 SUFFIXES = .java .class
-JAVAC = javac
 .java.class:; $(JAVAC) -d . $<
 
 bin_PROGRAMS = anag
 .java.class:; $(JAVAC) -d . $<
 
 bin_PROGRAMS = anag
-anag_SOURCES = anag.c anag.h wildcard.c anagram.c trackword.c util.c
+java_DATA = @jarfiles@
 
 
-all: anag.jar
+anag_SOURCES = anag.c anag.h wildcard.c anagram.c trackword.c util.c
 anag.jar: AnagGUI.class
 anag.jar: AnagGUI.class
-       jar cf anag.jar *.class
+       jar cf anag.jar AnagGUI*.class
 
 EXTRA_DIST = AnagGUI.java
 CLEANFILES = *.class *.jar
 
 EXTRA_DIST = AnagGUI.java
 CLEANFILES = *.class *.jar