chiark / gitweb /
Missing file.
[anag] / Makefile.am
CommitLineData
6e403221 1## -*-makefile-*-
2##
d9af4a2b 3## $Id: Makefile.am,v 1.10 2003/11/29 23:38:37 mdw Exp $
6e403221 4##
5## Makefile for Anag
6##
7## (c) 2001 Mark Wooding
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of Anag: a simple wordgame helper.
13##
14## Anag is free software; you can redistribute it and/or modify
15## it under the terms of the GNU General Public License as published by
16## the Free Software Foundation; either version 2 of the License, or
17## (at your option) any later version.
18##
19## Anag is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU General Public License for more details.
23##
24## You should have received a copy of the GNU General Public License
25## along with Anag; if not, write to the Free Software Foundation,
26## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28##----- Revision history ----------------------------------------------------
29##
30## $Log: Makefile.am,v $
d9af4a2b 31## Revision 1.10 2003/11/29 23:38:37 mdw
32## Debianization.
33##
fe9969ff 34## Revision 1.9 2003/09/15 02:48:55 mdw
35## Monoalphabetic match filter.
36##
50959b4c 37## Revision 1.8 2002/08/11 12:59:00 mdw
38## New Tcl/Tk interface; regular expression support.
39##
f7ebae38 40## Revision 1.7 2001/02/19 19:19:21 mdw
41## Minor build system fixes.
42##
0f01a808 43## Revision 1.6 2001/02/07 09:09:20 mdw
44## Install Java files in the right place.
45##
0484a0d9 46## Revision 1.5 2001/02/06 10:06:25 mdw
47## Find a suitable Java compiler. If there isn't one, don't compile the
48## Java bits.
49##
4ca2b0ce 50## Revision 1.4 2001/02/06 09:38:46 mdw
51## Remove redundant rule.
52##
7d9d3468 53## Revision 1.3 2001/02/06 09:37:56 mdw
54## Clean the .jar file.
55##
dc460403 56## Revision 1.2 2001/02/04 19:53:07 mdw
57## Simple GUI front-end in Java.
58##
6e403221 59## Revision 1.1 2001/02/04 17:14:42 mdw
60## Initial checkin
61##
62
63AUTOMAKE_OPTIONS = foreign
0f01a808 64javadir = $(datadir)/java
0484a0d9 65
66JAVAC = @JAVAC@
67
dc460403 68SUFFIXES = .java .class
dc460403 69.java.class:; $(JAVAC) -d . $<
70
6e403221 71bin_PROGRAMS = anag
50959b4c 72bin_SCRIPTS = @TKPROGS@
73EXTRA_SCRIPTS = anag-gui
74java_DATA = @JARFILES@
6e403221 75
50959b4c 76anag_SOURCES = \
d9af4a2b 77 anag.c anag.h util.c \
78 wildcard.c anagram.c mono.c trackword.c regexp.c pcre.c
50959b4c 79EXTRA_anag_SOURCES = regexp.c
dc460403 80anag.jar: AnagGUI.class
d9af4a2b 81 jar cfm anag.jar $(srcdir)/anag.manifest Anag*.class Whinge*.class
f7ebae38 82
83doszip: distdir
84 rm -f $(PACKAGE).zip
85 zip -qlr $(PACKAGE).zip $(distdir)
86 rm -rf $(distdir)
dc460403 87
d9af4a2b 88EXTRA_DIST = \
89 AnagGUI.java anag-gui.in \
90 debian/control debian/changelog debian/copyright debian/rules \
91 debian/anag-gui-java.postinst debian/anag-gui-java.prerm \
92 debian/anag-gui-tk.postinst debian/anag-gui-tk.prerm
93
7d9d3468 94CLEANFILES = *.class *.jar
dc460403 95
6e403221 96##----- That's all, folks ---------------------------------------------------