Initial Commit
[packages] / xemacs-packages / tm / Makefile
1 # Makefile for TM 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 VERSION = 1.42
21 AUTHOR_VERSION =
22 MAINTAINER = XEmacs Development Team <xemacs-beta@xemacs.org>
23 PACKAGE = tm
24 PKG_TYPE = regular
25 REQUIRES = gnus mh-e rmail vm mailcrypt mail-lib apel xemacs-base \
26         fsf-compat sh-script net-utils ecrypto
27 CATEGORY = standard
28
29 include ../../Local.rules.inc
30
31 ELCS = char-util.elc cless.elc gnus-art-mime.elc gnus-charset.elc \
32         gnus-mime.elc gnus-sum-mime.elc mel-b.elc \
33         mel-g.elc mel-q.elc mel-u.elc mel.elc message-mime.elc \
34         mime-setup.elc mu-bbdb.elc mu-cite.elc range.elc sc-setup.elc \
35         signature.elc texi-util.elc tl-atype.elc tl-list.elc tl-misc.elc \
36         tl-num.elc tl-seq.elc tl-str.elc tm-bbdb.elc tm-def.elc \
37         tm-edit-mc.elc tm-edit.elc tm-ew-d.elc tm-ew-e.elc tm-file.elc \
38         tm-ftp.elc tm-html.elc tm-image.elc tm-latex.elc tm-mail.elc \
39         tm-mh-e.elc tm-parse.elc tm-partial.elc tm-pgp.elc tm-play.elc \
40         tm-rmail.elc tm-setup.elc tm-tar.elc tm-text.elc tm-view.elc \
41         tm-vm.elc tmh-comp.elc tu-comment.elc tu-replace.elc
42
43 LIBSRC_FILES = $(wildcard lib-src/[a-z]*)
44
45 # vm-version provides 'vm
46 PRELOADS = -l vm-version
47
48 ifeq ($(BUILD_WITHOUT_MULE),)
49 ELCS += latex-math-symbol.elc 
50 endif
51
52 NAMES = tm tm-edit tm-view gnus-mime tm-mh-e
53 NAMES_EN = $(NAMES:%=%-en) tm-vm-en
54
55 ifeq ($(BUILD_WITHOUT_MULE),)
56 NAMES_JA = $(NAMES:%=%-ja)
57 COMPILE_INFO_AS_MULE = t
58 endif
59
60 NAMES_ALL = $(NAMES_EN) $(NAMES_JA)
61
62 EXPLICIT_DOCS = $(NAMES_ALL:%=texi/%.texi)
63
64 include ../../XEmacs.rules