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

all:
	rm -f *.elc ; $(EMACS) $(FLAGS) -f batch-byte-compile *.el

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

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