comparison lisp/gnus/Makefile @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 1ce6082ce73f
children cf808b4c4290
comparison
equal deleted inserted replaced
97:498bf5da1c90 98:0d2f883870bc
1 SHELL = /bin/sh 1 SHELL = /bin/sh
2 EMACS=emacs 2 EMACS=emacs
3 FLAGS=-batch -q -no-site-file -l bytecomp -l ./dgnushack.el 3 FLAGS=-batch -q -no-site-file -l ./dgnushack.el
4
5 total:
6 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
4 7
5 all: 8 all:
6 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile 9 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
10
11 clever:
12 $(EMACS) $(FLAGS) -f dgnushack-compile
7 13
8 some: 14 some:
9 $(EMACS) $(FLAGS) -f dgnushack-recompile 15 $(EMACS) $(FLAGS) -f dgnushack-recompile
10 16
11 tags: 17 tags:
12 etags *.el 18 etags *.el
13 19
14 separately: 20 separately:
15 rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done 21 rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
22
23 pot:
24 xpot -drgnus -r`cat ./version` *.el > rgnus.pot
25
26 gnus-load.el:
27 echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
28 echo ";;" >> gnus-load.el
29 echo ";;; Code:" >> gnus-load.el
30 echo >> gnus-load.el
31 $(EMACS) $(FLAGS) -l ./dgnushack.el -l custom-edit.el *.el \
32 -f custom-make-dependencies >> gnus-load.el
33 echo >> gnus-load.el
34 echo "(provide 'gnus-load)" >> gnus-load.el
35 echo >> gnus-load.el
36 echo ";;; gnus-load.el ends here" >> gnus-load.el