From: Don Armstrong Date: Sat, 31 Mar 2007 07:28:00 +0000 (+0000) Subject: update makefile to compile files X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=73b41aa61352234aa47ceda2198d0436b38179b0 update makefile to compile files --- diff --git a/emacs_el/Makefile b/emacs_el/Makefile index ddf9fdb..14ee7a2 100644 --- a/emacs_el/Makefile +++ b/emacs_el/Makefile @@ -3,12 +3,10 @@ all: $(patsubst %.el,%.elc,$(wildcard *.el)) %.elc: %.el - echo $<|emacs -q -no-site-file --no-site-file -batch -f byte-compile-file; + emacs -q -no-site-file --no-site-file -batch -f batch-byte-compile $<; clean: - rubber -d --clean *.tex - rm -f *.tmp - rm -f figures/*.pdf + rm -f *.elc .PHONY: clean all