comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
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