Synch with Gnus.
[elisp/gnus.git-] / lisp / Makefile.in
1 datadir = @datadir@
2 lispdir = @lispdir@
3 prefix = @prefix@
4 srcdir = @srcdir@
5 subdir = lisp
6 top_srcdir = @top_srcdir@
7
8 EMACS = @EMACS@
9 FLAGS = -batch -q -no-site-file -l $(srcdir)/dgnushack.el
10 INSTALL = @INSTALL@
11 INSTALL_DATA = @INSTALL_DATA@
12 SHELL = /bin/sh
13 VPATH = @srcdir@
14 PACKAGEDIR = @PACKAGEDIR@
15 W3DIR = @W3@
16 GNUS_PRODUCT_NAME = @GNUS_PRODUCT_NAME@
17 EXPORTING_FILES = $(EMACS) $(FLAGS) -f dgnushack-exporting-files 2>/dev/null
18
19 all total:
20         rm -f *.elc auto-autoloads.el custom-load.el
21         W3DIR=$(W3DIR) lispdir=$(lispdir) \
22                 srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
23
24 warn:
25         rm -f *.elc
26         W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) --eval '(dgnushack-compile t)' 2>&1 | egrep -v "variable G|inhibit-point-motion-hooks|coding-system|temp-results|variable gnus|variable nn|scroll-in-place|deactivate-mark|filladapt-mode|byte-code-function-p|print-quoted|ps-right-header|ps-left-header|article-inhibit|print-escape|ssl-program-arguments|message-log-max"
27
28 # The "clever" rule is unsafe, since redefined macros are loaded from
29 # .elc files, and not the .el file.
30 clever some:
31         W3DIR=$(W3DIR) lispdir=$(lispdir) \
32                 srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
33
34 install: clever install-lisp
35
36 install-lisp:
37         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
38         @for p in `$(EXPORTING_FILES)`; do \
39           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
40           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
41           if test -f $$p"c"; then \
42             echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \
43             $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \
44           fi; \
45         done
46
47 # Rule for XEmacs package.
48 install-package-manifest:
49         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
50                 -f dgnushack-install-package-manifest \
51                 $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
52
53 compose-package:
54         srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-make-autoloads
55
56 remove-extra-files-in-package:
57         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
58                 -f dgnushack-remove-extra-files-in-package \
59                 $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
60 #
61
62 tags:
63         etags *.el
64
65 separately:
66         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
67
68 pot:
69         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
70
71 gnus-load.el:
72         echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
73         echo ";;" >> gnus-load.el
74         echo ";;; Code:" >> gnus-load.el
75         echo >> gnus-load.el
76         $(EMACS)  $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \
77                 -f custom-make-dependencies >> gnus-load.el
78         echo >> gnus-load.el
79         echo "(provide 'gnus-load)" >> gnus-load.el
80         echo >> gnus-load.el
81         echo ";;; gnus-load.el ends here" >> gnus-load.el
82
83 clean:
84         rm -f *.orig *.rej *.elc *~
85         rm -f auto-autoloads.el custom-load.el
86
87 distclean: clean
88         rm -f Makefile dgnuspath.el
89
90 Makefile: $(srcdir)/Makefile.in ../config.status
91         cd .. \
92           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
93
94 # Tell versions [3.59,3.63) of GNU make to not export all variables.
95 # Otherwise a system limit (for SysV at least) may be exceeded.
96 .NOEXPORT: