Initial Commit
[packages] / xemacs-packages / erc / Makefile
1 # Makefile for erc lisp code
2
3 # This file is part of XEmacs.
4
5 # XEmacs is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the
7 # Free Software Foundation; either version 2, or (at your option) any
8 # later version.
9
10 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13 # for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with XEmacs; see the file COPYING.  If not, write to
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 # Boston, MA 02111-1307, USA.
19
20
21 VERSION = 0.26
22 AUTHOR_VERSION = Version 5.1.2 Revision: 1.796.2.6
23 MAINTAINER = Adrian Aichner <adrian@xemacs.org>
24 PACKAGE = erc
25 PKG_TYPE = regular
26 # Specify any required libraries which are not part of core lisp.
27 REQUIRES = edit-utils fsf-compat gnus pcomplete xemacs-base text-modes \
28 ispell viper
29 CATEGORY = standard
30
31 # See UNCOMPILED in Makefile.upstream.  We use DONTCOMPILE, which is
32 # the XEmacs target with the same purpose.
33 DONTCOMPILE = erc-chess.el erc-bbdb.el erc-ibuffer.el erc-speak.el \
34 erc-speedbar.el erc-compat.el _pkg.el
35 # TESTING is an upstream target.
36 TESTING = erc-members.el erc-macs.el
37 # ALLSOURCE is an upstream target.
38 ALLSOURCE = $(wildcard *.el)
39 # SOURCE is an upstream target.
40 SOURCE  = $(filter-out $(SPECIAL) $(DONTCOMPILE) $(TESTING),$(ALLSOURCE))
41 # See TARGET in Makefile.upstream.  We use ELCS, which is the XEmacs
42 # target with the same purpose.
43 ELCS    = $(patsubst %.el,%.elc,$(SPECIAL) $(SOURCE))
44 EXTRA_SOURCES = $(wildcard *.upstream) $(DONTCOMPILE) $(TESTING)
45
46 DATA_FILES = AUTHORS CREDITS HISTORY NEWS README servers.pl
47 DATA_DEST = $(PACKAGE)
48
49 # As of upstream -r release_5_1_branch
50 STANDARD_DOCS = t
51
52 include ../../XEmacs.rules