1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# Makefile for XEmacs development lisp code
# This file is part of XEmacs.
# XEmacs 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, or (at your option) any
# later version.
# XEmacs 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 XEmacs; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
# This XEmacs package contains independent single file lisp packages
VERSION = 1.17
AUTHOR_VERSION = 5.0
MAINTAINER = Mats Lidell <matsl@xemacs.org>
PACKAGE = hyperbole
PKG_TYPE = regular
REQUIRES = xemacs-base mail-lib calendar vm text-modes gnus mh-e rmail apel tm \
sh-script net-utils ecrypto
CATEGORY = standard
EXTRA_SOURCES = hsite.el hui-em19-b.el hui-ep-but.el hui-epV4-b.el \
hui-xe-but.el h-skip-bytec.lsp file-newer smart-clib-sym \
MANIFEST DEMO .hypb _hypb GNUmakefile.id
LISPFILES = \
hact.el hactypes.el hargs.el hbdata.el hbmap.el hbut.el \
hgnus.el hhist.el hib-doc-id.el hib-kbd.el hibtypes.el \
hinit.el hlvar.el hmail.el hmh.el hmoccur.el hmous-info.el \
hmouse-drv.el hmouse-key.el hmouse-mod.el hmouse-reg.el \
hmouse-sh.el hmouse-tag.el hpath.el hrmail.el hsmail.el \
hsys-w3.el hsys-wais.el hsys-www.el hsys-hbase.el \
htz.el hui-menu.el hui-mini.el hui-mouse.el hui-window.el \
hui.el hvar.el hversion.el hvm.el hypb.el hyperbole.el \
set.el wconfig.el wrolo-logic.el wrolo-menu.el wrolo.el \
LISPFILES_KOTL = \
kotl/kfile.el kotl/kfill.el kotl/kimport.el kotl/klabel.el \
kotl/klink.el kotl/kmenu.el kotl/knode.el kotl/kotl-mode.el \
kotl/kotl.el kotl/kproperty.el kotl/kexport.el \
kotl/kprop-xe.el kotl/kview.el kotl/kvspec.el
ELCS = $(LISPFILES:.el=.elc)
ELCS_1 = $(LISPFILES_KOTL:.el=.elc)
ELCS_1_DEST = $(PACKAGE)/kotl
ELCS_1_FILES = $(LISPFILES_KOTL:.el=.elc) $(LISPFILES_KOTL) kotl/MANIFEST kotl/EXAMPLE.kotl
EXPLICIT_DOCS = man/$(PACKAGE).texi
MAKEINFO_FLAGS = -Iman
DATA_FILES = man/hypb-mouse.txt
DATA_DEST = $(PACKAGE)
PRELOADS = -eval '(setq hyperb:dir "./")' -l ./hversion.el -l ./hyperbole.el -l ./hsite.el
EARLY_GENERATED_LISP = hsite.el
include ../../XEmacs.rules
hsite.el: hsite-ex.el
\test -f hsite.el || cp hsite-ex.el hsite.el
|