]> git.donarmstrong.com Git - lib.git/blob - emacs_el/Makefile
add makefile, and rip out xemacs compatibility mode
[lib.git] / emacs_el / Makefile
1 #!/usr/bin/make
2
3 all: $(patsubst %.el,%.elc,$(wildcard *.el))
4
5 %.elc: %.el
6         echo $<|emacs -q -no-site-file --no-site-file -batch -f byte-compile-file;
7
8 clean: 
9         rubber -d --clean *.tex
10         rm -f *.tmp
11         rm -f figures/*.pdf
12
13 .PHONY: clean all
14