58d99a1e221dcce53c55646302e41bedb3753b85
[gnus] / lisp / Makefile.in
1 prefix = @prefix@
2 datarootdir = @datarootdir@
3 datadir = @datadir@
4 lispdir = @lispdir@
5 srcdir = @srcdir@
6 subdir = lisp
7 top_srcdir = @top_srcdir@
8
9 EMACS = @EMACS@
10 FLAGS = @FLAGS@
11 INSTALL = @INSTALL@
12 INSTALL_DATA = @INSTALL_DATA@
13 SHELL = /bin/sh
14 VPATH = @srcdir@
15 W3DIR = @W3@
16 URLDIR = @URL@
17 EMACS_COMP = URLDIR="$(URLDIR)" W3DIR="$(W3DIR)" lispdir="$(lispdir)" srcdir=$(srcdir) $(EMACS) $(FLAGS)
18
19 all total: clean-some gnus-load.el
20         $(EMACS_COMP) -f dgnushack-compile
21
22 clean-some:
23         rm -f *.elc gnus-load.el auto-autoloads.* custom-load.*
24
25 warn: clean-some gnus-load.el
26         $(EMACS_COMP) --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 fail-on-warning: clean-some gnus-load.el
29         $(EMACS_COMP) -f dgnushack-compile-error-on-warn
30
31 # The "clever" rule is unsafe, since redefined macros are loaded from
32 # .elc files, and not the .el file.
33 clever some l: gnus-load.el
34         $(EMACS_COMP) -f dgnushack-compile
35
36 install: install-el-elc list-installed-shadows
37
38 # Test rules
39 check:  test-registry
40
41 test-registry:
42         $(EMACS_COMP) -l ert -l gnus-registry.el -f ert-run-tests-batch-and-exit
43
44 # This entry will never install .el files if there are no .elc files.
45 install-el: gnus-load.el
46         $(SHELL) $(top_srcdir)/mkinstalldirs "$(lispdir)"
47         $(INSTALL_DATA) gnus-load.el "$(lispdir)/gnus-load.el"
48         @for p in *.elc; do \
49           p=`basename $$p c`; \
50           if [ -f "$(srcdir)/$$p" ]; then \
51             echo "$(INSTALL_DATA) $$p \"$(lispdir)/$$p\""; \
52             $(INSTALL_DATA) $(srcdir)/$$p "$(lispdir)/$$p"; \
53           fi; \
54         done
55
56 install-elc: clever
57         rm -f dgnushack.elc
58         $(SHELL) $(top_srcdir)/mkinstalldirs "$(lispdir)"
59         @for p in *.elc; do \
60           echo "$(INSTALL_DATA) $$p \"$(lispdir)/$$p\""; \
61           $(INSTALL_DATA) $$p "$(lispdir)/$$p"; \
62         done
63
64 install-el-elc: clever
65         rm -f dgnushack.elc
66         $(SHELL) $(top_srcdir)/mkinstalldirs "$(lispdir)"
67         $(INSTALL_DATA) gnus-load.el "$(lispdir)/gnus-load.el"
68         @for p in *.elc; do \
69           q=`basename $$p c`; \
70           if [ -f "$(srcdir)/$$q" ]; then \
71             echo "$(INSTALL_DATA) $$q \"$(lispdir)/$$q\""; \
72             $(INSTALL_DATA) $(srcdir)/$$q "$(lispdir)/$$q"; \
73           fi; \
74           echo "$(INSTALL_DATA) $$p \"$(lispdir)/$$p\""; \
75           $(INSTALL_DATA) $$p "$(lispdir)/$$p"; \
76         done
77
78 list-installed-shadows:
79         $(EMACS_COMP) -f dgnushack-find-lisp-shadows
80
81 remove-installed-shadows:
82         $(EMACS_COMP) -f dgnushack-remove-lisp-shadows
83
84 uninstall:
85         for p in *.elc; do \
86           rm -f "$(lispdir)/$$p"; \
87         done
88         cd $(srcdir); \
89         for p in *.el; do \
90           rm -f "$(lispdir)/$$p"; \
91         done
92
93 tags:
94         etags *.el
95
96 separately:
97         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
98
99 pot:
100         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
101
102 gnus-load.el:
103         $(EMACS_COMP) -f dgnushack-make-cus-load $(srcdir)
104         $(EMACS_COMP) -f dgnushack-make-auto-load $(srcdir)
105         $(EMACS_COMP) -f dgnushack-make-load
106
107 clean:
108         rm -f *.elc *.orig *.rej *~ auto-autoloads.* custom-load.* gnus-load.el
109
110 distclean: clean
111         rm -f Makefile
112
113 Makefile: $(srcdir)/Makefile.in ../config.status
114         cd .. \
115           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
116
117 # Tell versions [3.59,3.63) of GNU make to not export all variables.
118 # Otherwise a system limit (for SysV at least) may be exceeded.
119 .NOEXPORT: