7252ddd63e46953cf2b1c9ac44bc365c7b55d061
[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         @if test -f $(srcdir)/gnus.elc; then \
32           echo \
33             "checking for whether the all elc files should be recompiled..."; \
34           RM_ELC=nil; \
35           if test `$(EMACS) -batch -q -no-site-file \
36                 -eval "(princ (format \"%s\" (featurep (quote xemacs))))" \
37                 2>/dev/null` = t; then \
38             test ! -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
39           else \
40             test -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
41           fi; \
42           if test $$RM_ELC = t; then \
43             echo " => yes; rm -f *.elc auto-autoloads.el custom-load.el"; \
44             rm -f *.elc auto-autoloads.el custom-load.el; \
45           else \
46             echo " => unnecessary"; \
47           fi; \
48         fi
49         W3DIR=$(W3DIR) lispdir=$(lispdir) \
50                 srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
51
52 install: clever
53         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
54         @for p in `$(EXPORTING_FILES)`; do \
55           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
56           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
57           if test -f $$p"c"; then \
58             echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \
59             $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \
60           fi; \
61         done
62
63 # Rule for XEmacs package.
64 install-package-manifest:
65         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
66                 -f dgnushack-install-package-manifest \
67                 $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
68
69 compose-package:
70         srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-make-autoloads
71
72 remove-extra-files-in-package:
73         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
74                 -f dgnushack-remove-extra-files-in-package \
75                 $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
76 #
77
78 install-el:
79         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
80         cd $(srcdir) \
81         && for p in *.el; do \
82           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
83           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
84         done
85
86 tags:
87         etags *.el
88
89 separately:
90         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
91
92 pot:
93         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
94
95 gnus-load.el:
96         echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
97         echo ";;" >> gnus-load.el
98         echo ";;; Code:" >> gnus-load.el
99         echo >> gnus-load.el
100         $(EMACS)  $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \
101                 -f custom-make-dependencies >> gnus-load.el
102         echo >> gnus-load.el
103         echo "(provide 'gnus-load)" >> gnus-load.el
104         echo >> gnus-load.el
105         echo ";;; gnus-load.el ends here" >> gnus-load.el
106
107 clean:
108         rm -f *.orig *.rej *.elc *~
109         rm -f auto-autoloads.el custom-load.el
110
111 distclean: clean
112         rm -f Makefile dgnuspath.el
113
114 Makefile: $(srcdir)/Makefile.in ../config.status
115         cd .. \
116           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
117
118 # Tell versions [3.59,3.63) of GNU make to not export all variables.
119 # Otherwise a system limit (for SysV at least) may be exceeded.
120 .NOEXPORT: