*** empty log message ***
[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 ./dgnushack.el
10 INSTALL = @INSTALL@
11 INSTALL_DATA = @INSTALL_DATA@
12 SHELL = /bin/sh
13 VPATH = @srcdir@
14
15 total:
16         rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
17
18 all:
19         rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
20
21 clever:
22         $(EMACS) $(FLAGS) -f dgnushack-compile
23
24 some:
25         $(EMACS) $(FLAGS) -f dgnushack-compile
26
27 install: clever
28         $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
29         for p in *.elc; do \
30           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
31           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
32         done
33
34 tags:
35         etags *.el
36
37 separately:
38         rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
39
40 pot:
41         xpot -drgnus -r`cat ./version` *.el > rgnus.pot
42
43 gnus-load.el:
44         echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
45         echo ";;" >> gnus-load.el
46         echo ";;; Code:" >> gnus-load.el
47         echo >> gnus-load.el
48         $(EMACS)  $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \
49                 -f custom-make-dependencies >> gnus-load.el
50         echo >> gnus-load.el
51         echo "(provide 'gnus-load)" >> gnus-load.el
52         echo >> gnus-load.el
53         echo ";;; gnus-load.el ends here" >> gnus-load.el
54
55 distclean:
56         rm -f *.orig *.rej *.elc *~ Makefile
57
58 Makefile: $(srcdir)/Makefile.in ../config.status
59         cd .. \
60           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
61
62 # Tell versions [3.59,3.63) of GNU make to not export all variables.
63 # Otherwise a system limit (for SysV at least) may be exceeded.
64 .NOEXPORT: