ALL Packages Release!
[packages] / xemacs-packages / patcher / Makefile
1 ### Makefile --- for packages in the XEmacs package infrastructure
2
3 ## Copyright (C) 2012 Didier Verna.
4
5 ## Author:        Didier Verna <didier@xemacs.org>
6 ## Maintainer:    Didier Verna <didier@xemacs.org>
7 ## Created:       Wed Mar  1 13:23:24 2000
8 ## Last Revision: Mon Jan 16 10:54:59 2012
9
10 ## This program is free software; you can redistribute it and/or modify
11 ## it under the terms of the GNU General Public License version 2,
12 ## as published by the Free Software Foundation.
13
14 ## This program is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
18
19 ## You should have received a copy of the GNU General Public License
20 ## along with this program; if not, write to the Free Software
21 ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
23
24 ### Commentary:
25
26 ## Contents management by FCM version 0.1.
27
28 ## Please use GNU Make with this makefile.
29
30
31 ### Code:
32
33 include Makefile.prj
34 include lisp/Makefile.prj
35 -include doc/Makefile.prj
36 -include etc/Makefile.prj
37
38 PACKAGE          = $(PROJECT)
39 PKG_TYPE         = regular
40 REQUIRES         = mail-lib
41 CATEGORY         = standard
42 PACKAGE_SUPPRESS =
43
44 VERSION        = 1.01
45 AUTHOR_VERSION = 4.0 pre 1
46 MAINTAINER     = Didier Verna <didier@xemacs.org>
47
48 ELCS                 = $(EL_FILES:%.el=lisp/%.elc)
49 ELCS_1               =
50 ELCS_1_DEST          =
51 EARLY_GENERATED_LISP =
52 GENERATED_LISP       =
53 # #### NOTE: Patcher needs its own patcher-cutil.el file at compile time.
54 PRELOADS             = -eval '(push "lisp" load-path)'
55 AUTOLOAD_PATH        = lisp
56
57 # #### WARNING: note the := here. This is needed because XEmacs.rules in turn
58 # #### sets its own version of TEXI_FILES back to EXPLICIT_DOCS.
59 EXPLICIT_DOCS         := $(TEXI_FILES:%=doc/%)
60 STANDARD_DOCS          =
61 EXTRA_TEXI_FILES       =
62 EXTRA_HTML_FILES       =
63 DOCS_TEXINFO_EXTENSION =
64 DOCS_TXI_EXTENSION     =
65 EXTRA_DOC_FILES        =
66
67 EXTRA_DEPENDENCIES =
68 EXTRA_SOURCES      =
69 LIBSRC_FILES       =
70 DATA_FILES         =
71 DATA_DEST          =
72
73 include ../../XEmacs.rules
74
75
76 \f
77 ## Local Variables:
78 ## mode: makefile
79 ## End:
80
81 ### Makefile ends here