view lisp/gnus/Makefile @ 7:c153ca296910

Added tag r19-15b4 for changeset 27bc7f280385
author cvs
date Mon, 13 Aug 2007 08:47:16 +0200
parents 376386a54a3c
children 0293115a14e9
line wrap: on
line source

SHELL = /bin/sh
EMACS=emacs
FLAGS=-batch -q -no-site-file -l ./dgnushack.el

all:
	rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile

some:
	$(EMACS) $(FLAGS) -f dgnushack-recompile

tags:
	etags *.el

separately:
	rm -f *.elc ; for i in *.el; do $(EMACS) $(FLAGS) -f batch-byte-compile $$i; done