Move image files to etc/gnus.
[gnus] / 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 W3DIR = @W3@
15
16 all total:
17         rm -f *.elc
18         W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
19
20 warn:
21         rm -f *.elc
22         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"
23
24 # The "clever" rule is unsafe, since redefined macros are loaded from
25 # .elc files, and not the .el file.
26 clever some:
27         W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
28
29 install: clever
30         rm -f dgnushack.elc
31         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
32         for p in *.elc; do \
33           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
34           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
35         done
36
37 install-el:
38         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
39         cd $(srcdir) \
40         && for p in *.el; do \
41           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
42           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
43         done
44
45 tags:
46         etags *.el
47
48 separately:
49         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
50
51 pot:
52         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
53
54 gnus-load.el:
55         echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
56         echo ";;" >> gnus-load.el
57         echo ";;; Code:" >> gnus-load.el
58         echo >> gnus-load.el
59         $(EMACS)  $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \
60                 -f custom-make-dependencies >> gnus-load.el
61         echo >> gnus-load.el
62         echo "(provide 'gnus-load)" >> gnus-load.el
63         echo >> gnus-load.el
64         echo ";;; gnus-load.el ends here" >> gnus-load.el
65
66 distclean:
67         rm -f *.orig *.rej *.elc *~ Makefile
68
69 Makefile: $(srcdir)/Makefile.in ../config.status
70         cd .. \
71           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
72
73 # Tell versions [3.59,3.63) of GNU make to not export all variables.
74 # Otherwise a system limit (for SysV at least) may be exceeded.
75 .NOEXPORT: