-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.pkg
77 lines (55 loc) · 1.9 KB
/
Makefile.pkg
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
73
74
75
76
77
### Makefile --- Generic makefile for XEmacs packages
## Copyright (C) 2012,2013 Didier Verna
## Author: Didier Verna <didier@didierverna.net>
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License version 3,
## as published by the Free Software Foundation.
## This program 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 this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
### Commentary:
## Contents management by FCM version 0.1.
## Please use GNU Make with this makefile.
### Code:
include Makefile.prj
include lisp/Makefile.prj
-include doc/Makefile.prj
-include etc/Makefile.prj
PACKAGE = $(PROJECT)
PKG_TYPE = regular
REQUIRES =
CATEGORY = standard
PACKAGE_SUPPRESS =
VERSION =
AUTHOR_VERSION =
MAINTAINER = Didier Verna <didier@didierverna.net>
ELCS = $(EL_FILES:%.el=lisp/%.elc)
ELCS_1 =
ELCS_1_DEST =
EARLY_GENERATED_LISP =
GENERATED_LISP =
PRELOADS =
AUTOLOAD_PATH = lisp
# #### WARNING: note the := here. This is needed because XEmacs.rules
# in turn sets its own version of TEXI_FILES back to EXPLICIT_DOCS.
EXPLICIT_DOCS := $(TEXI_FILES:%=doc/%)
STANDARD_DOCS =
EXTRA_TEXI_FILES =
EXTRA_HTML_FILES =
DOCS_TEXINFO_EXTENSION =
DOCS_TXI_EXTENSION =
EXTRA_DOC_FILES =
EXTRA_DEPENDENCIES =
EXTRA_SOURCES =
LIBSRC_FILES =
DATA_FILES =
DATA_DEST =
include ../../XEmacs.rules
## Local Variables:
## mode: makefile
## End:
### Makefile ends here