Remove old and crusty Sun pkg
[packages] / xemacs-packages / Makefile
1 # This file is part of XEmacs.
2
3 # Copyright (C) 2001, 2002 Steve Youngs
4 # Copyright (C) 2004 Ben Wing.
5
6 # XEmacs is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by the
8 # Free Software Foundation; either version 2, or (at your option) any
9 # later version.
10
11 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 # for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with XEmacs; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21 # So we can get at $NONMULE_PACKAGES
22 include ../Local.rules.inc
23
24 # At one point, we needed the list of packages to be in a very particular
25 # order because of autoload issues.  This is no longer true -- we build all
26 # autoloads first, before any compilation, so they're available to all
27 # packages, and we arrange things so that out-of-date .elc files are
28 # ignored.  However, it's useful to order the more basic stuff first,
29 # to speed up compilation.  We use four groups:
30 #
31 # (a) The most basic stuff, listed in dependency order.
32 # (b) Basic libraries used by lots of other code, with few or no dependencies
33 #     other than in (a); listed alphabetically.
34 # (c) Some other things with more dependencies but used by lots of packages;
35 #     listed alphabetically.
36 # (d) Everything else, listed alphabetically.
37
38 ifeq ('$(NONMULE_PACKAGES)','xemacs-packages')
39 PACKAGES := xemacs-base fsf-compat mail-lib \
40         \
41         apel cc-mode debug dired ecrypto edit-utils elib eterm ispell \
42         os-utils sh-script texinfo text-modes xlib \
43         \
44         edebug efs net-utils xemacs-devel \
45         \
46         cedet-common speedbar eieio ede semantic cogre \
47         \
48         ada auctex bbdb c-support calc calendar \
49         cookie crisp dictionary docbookide easypg ecb ediff edt emerge \
50         erc escreen eshell eudc footnote forms fortran-modes \
51         frame-icon games general-docs gnats gnus guided-tour haskell-mode \
52         hm--html-menus hyperbole ibuffer idlwave igrep ilisp \
53         jde mailcrypt mew mh-e mine misc-games mmm-mode \
54         ocaml oo-browser pc pcl-cvs pcomplete perl-modes pgg \
55         prog-modes ps-print psgml psgml-dtds python-modes re-builder \
56         reftex riece rmail ruby-modes sasl scheme sgml \
57         sieve slider sml-mode sounds-au sounds-wav strokes \
58         supercite textools time tm tooltalk tpu tramp \
59         vc vc-cc vhdl view-process viper vm w3 x-symbol \
60         xetla xslide xslt-process xwem zenirc
61 else
62 PACKAGES := $(NONMULE_PACKAGES)
63 endif
64
65 compile::
66
67 include ../iterate.rules