annotate lisp/gnus/Makefile @ 26:441bb1e64a06 r19-15b96

Import from CVS: tag r19-15b96
author cvs
date Mon, 13 Aug 2007 08:51:32 +0200
parents 0293115a14e9
children ec9a17fef872
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 SHELL = /bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 EMACS=emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 FLAGS=-batch -q -no-site-file -l ./dgnushack.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
5 total:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
6 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
7
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 all:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
11 clever:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
12 $(EMACS) $(FLAGS) -f dgnushack-compile
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
13
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 some:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 $(EMACS) $(FLAGS) -f dgnushack-recompile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 tags:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 etags *.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 separately:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
22
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
23 pot:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
24 xpot -drgnus -r`cat ./version` *.el > rgnus.pot
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
25
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
26 gnus-load.el:
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
27 echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
28 echo ";;" >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
29 echo ";;; Code:" >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
30 echo >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
31 $(EMACS) $(FLAGS) -l ./dgnushack.el -l custom-edit.el *.el \
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
32 -f custom-make-dependencies >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
33 echo >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
34 echo "(provide 'gnus-load)" >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
35 echo >> gnus-load.el
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
36 echo ";;; gnus-load.el ends here" >> gnus-load.el
26
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
37
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
38 distclean:
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
39 rm -f *.orig *.rej *.elc *~
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
40