X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=emacs_el%2FMakefile;fp=emacs_el%2FMakefile;h=ddf9fdbeea0d6a095657e2dca982279f5b8b12c9;hb=203c967c40064f1000634b095b6397433c9fa9f3;hp=0000000000000000000000000000000000000000;hpb=db67e0079cc199ec9183101af34e215daeef99fe;p=lib.git diff --git a/emacs_el/Makefile b/emacs_el/Makefile new file mode 100644 index 0000000..ddf9fdb --- /dev/null +++ b/emacs_el/Makefile @@ -0,0 +1,14 @@ +#!/usr/bin/make + +all: $(patsubst %.el,%.elc,$(wildcard *.el)) + +%.elc: %.el + echo $<|emacs -q -no-site-file --no-site-file -batch -f byte-compile-file; + +clean: + rubber -d --clean *.tex + rm -f *.tmp + rm -f figures/*.pdf + +.PHONY: clean all +