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
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