chiark / gitweb /
Find a suitable Java compiler. If there isn't one, don't compile the
[anag] / Makefile.am
index 620b1cc62ba366e438d8ad663b5d8fe90358a24c..19dc30f4e64af478b2c9873f61625a6ca1419c10 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-makefile-*-
 ##
-## $Id: Makefile.am,v 1.1 2001/02/04 17:14:42 mdw Exp $
+## $Id: Makefile.am,v 1.5 2001/02/06 10:06:25 mdw Exp $
 ##
 ## Makefile for Anag
 ##
 ##----- 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.3  2001/02/06 09:37:56  mdw
+## Clean the .jar file.
+##
+## Revision 1.2  2001/02/04 19:53:07  mdw
+## Simple GUI front-end in Java.
+##
 ## Revision 1.1  2001/02/04 17:14:42  mdw
 ## Initial checkin
 ##
 
 AUTOMAKE_OPTIONS = foreign
+javadir = datadir/java
+
+JAVAC = @JAVAC@
+
+SUFFIXES = .java .class
+.java.class:; $(JAVAC) -d . $<
+
 bin_PROGRAMS = anag
+java_DATA = @jarfiles@
+
 anag_SOURCES = anag.c anag.h wildcard.c anagram.c trackword.c util.c
+anag.jar: AnagGUI.class
+       jar cf anag.jar AnagGUI*.class
+
+EXTRA_DIST = AnagGUI.java
+CLEANFILES = *.class *.jar
 
 ##----- That's all, folks ---------------------------------------------------