Preserve our version of riece/.gitmodules
[packages] / meta-targets.rules
1 # This file is part of XEmacs.
2 # Copyright (C) 2002, 2003, 2004 Ben Wing.
3
4 # XEmacs is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License as published by the
6 # Free Software Foundation; either version 2, or (at your option) any
7 # later version.
8
9 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 # for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with XEmacs; see the file COPYING.  If not, write to
16 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 # Boston, MA 02110-1301, USA.
18
19 #
20 # All targets that compile as part of their operation do compilation need
21 # to build all of the autoloads first before anything else.  To avoid the
22 # need to duplicate these declarations in three places, we use a separate
23 # file.
24 #
25
26 # Make this the first target
27 all: autoloads bytecompile
28
29 all-with-html: all html
30
31 install: all install-only
32
33 bindist: all install-for-bindist
34
35 .PHONY: all all-with-html install bindist
36
37 # Indicate which targets need the pdepends to be built prior to doing
38 # the work of the target.
39 autoloads_NEED_PDEPENDS = t
40 bytecompile_NEED_PDEPENDS = t
41 all-with-html_NEED_PDEPENDS = t
42 install_NEED_PDEPENDS = t
43 bindist_NEED_PDEPENDS = t
44
45 # Local Variables:
46 # mode: makefile
47 # End: