## -*-makefile-*- ## ## $Id: Makefile.am,v 1.10 2003/11/29 23:38:37 mdw Exp $ ## ## Makefile for Anag ## ## (c) 2001 Mark Wooding ## ##----- Licensing notice ---------------------------------------------------- ## ## This file is part of Anag: a simple wordgame helper. ## ## Anag is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## Anag is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Anag; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ ## Revision 1.10 2003/11/29 23:38:37 mdw ## Debianization. ## ## Revision 1.9 2003/09/15 02:48:55 mdw ## Monoalphabetic match filter. ## ## Revision 1.8 2002/08/11 12:59:00 mdw ## New Tcl/Tk interface; regular expression support. ## ## Revision 1.7 2001/02/19 19:19:21 mdw ## Minor build system fixes. ## ## Revision 1.6 2001/02/07 09:09:20 mdw ## Install Java files in the right place. ## ## 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 bin_SCRIPTS = @TKPROGS@ EXTRA_SCRIPTS = anag-gui java_DATA = @JARFILES@ anag_SOURCES = \ anag.c anag.h util.c \ wildcard.c anagram.c mono.c trackword.c regexp.c pcre.c EXTRA_anag_SOURCES = regexp.c anag.jar: AnagGUI.class jar cfm anag.jar $(srcdir)/anag.manifest Anag*.class Whinge*.class doszip: distdir rm -f $(PACKAGE).zip zip -qlr $(PACKAGE).zip $(distdir) rm -rf $(distdir) EXTRA_DIST = \ AnagGUI.java anag-gui.in \ debian/control debian/changelog debian/copyright debian/rules \ debian/anag-gui-java.postinst debian/anag-gui-java.prerm \ debian/anag-gui-tk.postinst debian/anag-gui-tk.prerm CLEANFILES = *.class *.jar ##----- That's all, folks ---------------------------------------------------