view lisp/gnus/Makefile @ 90:99da576a67e7 xemacs-20-0

Import from CVS: tag xemacs-20-0
author cvs
date Mon, 13 Aug 2007 09:10:46 +0200
parents 1ce6082ce73f
children 0d2f883870bc
line wrap: on
line source

SHELL = /bin/sh
EMACS=emacs
FLAGS=-batch -q -no-site-file -l bytecomp -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