* lisp/Makefile.in (install): Use the lisp function `dgnushack-exported-files'.
[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
17 all total:
18         rm -f *.elc auto-autoloads.el custom-load.el
19         W3DIR=$(W3DIR) lispdir=$(lispdir) \
20                 srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
21
22 warn:
23         rm -f *.elc
24         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"
25
26 # The "clever" rule is unsafe, since redefined macros are loaded from
27 # .elc files, and not the .el file.
28 clever some:
29         W3DIR=$(W3DIR) lispdir=$(lispdir) \
30                 srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
31
32 install: clever
33         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
34         @for p in \
35         `$(EMACS) $(FLAGS) -f dgnushack-exported-files 2>/dev/null`; do \
36           if test "$$p" != "dgnuspath.el" -a "$$p" != "ptexinfmt.el"; then \
37             echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
38             $(INSTALL_DATA) $$p $(lispdir)/$$p; \
39             if test -f $$p"c"; then \
40               echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \
41               $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \
42             fi; \
43           fi; \
44         done
45
46 # Rule for XEmacs package.
47 install-package-lick:
48         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
49                 -f dgnushack-install-package-lick $(PACKAGEDIR)
50
51 install-package-info:
52         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
53                 -f dgnushack-install-package-info $(PACKAGEDIR)
54
55 install-package-info-ja:
56         srcdir=$(srcdir) $(EMACS) $(FLAGS) \
57                 -f dgnushack-install-package-info-ja $(PACKAGEDIR)
58
59 compose-package:
60         srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compose-package
61 #
62
63 tags:
64         etags *.el
65
66 separately:
67         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
68
69 pot:
70         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
71
72 gnus-load.el:
73         echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
74         echo ";;" >> gnus-load.el
75         echo ";;; Code:" >> gnus-load.el
76         echo >> gnus-load.el
77         $(EMACS)  $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \
78                 -f custom-make-dependencies >> gnus-load.el
79         echo >> gnus-load.el
80         echo "(provide 'gnus-load)" >> gnus-load.el
81         echo >> gnus-load.el
82         echo ";;; gnus-load.el ends here" >> gnus-load.el
83
84 clean:
85         rm -f *.orig *.rej *.elc *~
86         rm -f auto-autoloads.el custom-load.el
87
88 distclean: clean
89         rm -f Makefile dgnuspath.el
90
91 Makefile: $(srcdir)/Makefile.in ../config.status
92         cd .. \
93           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
94
95 # Tell versions [3.59,3.63) of GNU make to not export all variables.
96 # Otherwise a system limit (for SysV at least) may be exceeded.
97 .NOEXPORT: