annotate lisp/gnus/Makefile @ 0:376386a54a3c
r19-14
Import from CVS: tag r19-14
author |
cvs |
date |
Mon, 13 Aug 2007 08:45:50 +0200 |
parents |
|
children |
0293115a14e9 |
rev |
line source |
0
|
1 SHELL = /bin/sh
|
|
2 EMACS=emacs
|
|
3 FLAGS=-batch -q -no-site-file -l ./dgnushack.el
|
|
4
|
|
5 all:
|
|
6 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
|
|
7
|
|
8 some:
|
|
9 $(EMACS) $(FLAGS) -f dgnushack-recompile
|
|
10
|
|
11 tags:
|
|
12 etags *.el
|
|
13
|
|
14 separately:
|
|
15 rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done
|