annotate lisp/gnus/Makefile @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents ec9a17fef872
children 1ce6082ce73f
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 all:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 some:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 $(EMACS) $(FLAGS) -f dgnushack-recompile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 tags:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 etags *.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 separately:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done