annotate lisp/gnus/Makefile @ 84:ac0620f6398e r20-0b92

Import from CVS: tag r20-0b92
author cvs
date Mon, 13 Aug 2007 09:08:29 +0200
parents 1ce6082ce73f
children 0d2f883870bc
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
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
3 FLAGS=-batch -q -no-site-file -l bytecomp -l ./dgnushack.el
0
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