]> git.donarmstrong.com Git - lib.git/blob - emacs_el/Makefile
update makefile to compile files
[lib.git] / emacs_el / Makefile
1 #!/usr/bin/make
2
3 all: $(patsubst %.el,%.elc,$(wildcard *.el))
4
5 %.elc: %.el
6         emacs -q -no-site-file --no-site-file -batch -f batch-byte-compile $<;
7
8 clean: 
9         rm -f *.elc
10
11 .PHONY: clean all
12