Debianization.
[anag] / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.am,v 1.10 2003/11/29 23:38:37 mdw Exp $
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 $
31 ## Revision 1.10 2003/11/29 23:38:37 mdw
32 ## Debianization.
33 ##
34 ## Revision 1.9 2003/09/15 02:48:55 mdw
35 ## Monoalphabetic match filter.
36 ##
37 ## Revision 1.8 2002/08/11 12:59:00 mdw
38 ## New Tcl/Tk interface; regular expression support.
39 ##
40 ## Revision 1.7 2001/02/19 19:19:21 mdw
41 ## Minor build system fixes.
42 ##
43 ## Revision 1.6 2001/02/07 09:09:20 mdw
44 ## Install Java files in the right place.
45 ##
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 ##
50 ## Revision 1.4 2001/02/06 09:38:46 mdw
51 ## Remove redundant rule.
52 ##
53 ## Revision 1.3 2001/02/06 09:37:56 mdw
54 ## Clean the .jar file.
55 ##
56 ## Revision 1.2 2001/02/04 19:53:07 mdw
57 ## Simple GUI front-end in Java.
58 ##
59 ## Revision 1.1 2001/02/04 17:14:42 mdw
60 ## Initial checkin
61 ##
62
63 AUTOMAKE_OPTIONS = foreign
64 javadir = $(datadir)/java
65
66 JAVAC = @JAVAC@
67
68 SUFFIXES = .java .class
69 .java.class:; $(JAVAC) -d . $<
70
71 bin_PROGRAMS = anag
72 bin_SCRIPTS = @TKPROGS@
73 EXTRA_SCRIPTS = anag-gui
74 java_DATA = @JARFILES@
75
76 anag_SOURCES = \
77 anag.c anag.h util.c \
78 wildcard.c anagram.c mono.c trackword.c regexp.c pcre.c
79 EXTRA_anag_SOURCES = regexp.c
80 anag.jar: AnagGUI.class
81 jar cfm anag.jar $(srcdir)/anag.manifest Anag*.class Whinge*.class
82
83 doszip: distdir
84 rm -f $(PACKAGE).zip
85 zip -qlr $(PACKAGE).zip $(distdir)
86 rm -rf $(distdir)
87
88 EXTRA_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
94 CLEANFILES = *.class *.jar
95
96 ##----- That's all, folks ---------------------------------------------------