Skip to content
Snippets Groups Projects
Makefile 2.13 KiB
Newer Older
viteno's avatar
viteno committed
# Makefile for xwem 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.

VERSION = 1.00
AUTHOR_VERSION = 0.1
MAINTAINER = Zajcev Evgeny
PACKAGE = xwem
PKG_TYPE = regular
REQUIRES = xemacs-base xlib strokes edit-utils text-modes time slider
CATEGORY = standard

ELCS =  lisp/xwem-compat.elc lisp/xwem-clients.elc lisp/xwem-events.elc lisp/xwem-frame.elc \
        lisp/xwem-faces.elc lisp/xwem-help.elc lisp/xwem-focus.elc lisp/xwem-keyboard.elc \
        lisp/xwem-keymacro.elc lisp/xwem-keydefs.elc \
        lisp/xwem-launcher.elc lisp/xwem-main.elc lisp/xwem-manage.elc lisp/xwem-minibuffer.elc \
        lisp/xwem-misc.elc lisp/xwem-mouse.elc lisp/xwem-interactive.elc lisp/xwem-root.elc \
        lisp/xwem-special.elc lisp/xwem-strokes.elc lisp/xwem-tray.elc lisp/xwem-win.elc \
        lisp/xwem-icons.elc lisp/xwem-tabbing.elc lisp/xwem-sound.elc lisp/xwem-load.elc

ELCS_1 = lisp/addons/xwem-edmacro.elc lisp/addons/xwem-clswi.elc lisp/addons/xwem-time.elc \
        lisp/addons/xwem-osd.elc lisp/addons/xwem-holer.elc lisp/addons/xwem-framei.elc \
        lisp/addons/xwem-register.elc lisp/addons/xwem-gamma.elc

ELCS_1_DEST = $(PACKAGE)/addons
ELCS_1_FILES = $(ELCS_1) $(ELCS_1:.elc=.el)

DATA_FILES = $(wildcard icons/*.x[bp]m) logo.xpm
DATA_DEST = $(PACKAGE)

AUTOLOAD_PATH = lisp

PRELOADS = -eval '(progn (push "./lisp" load-path) (push "./lisp/addons" load-path) (push (concat (package-name-to-directory "xlib") "/ext") load-path))' -l lisp/auto-autoloads.el

include ../../XEmacs.rules