]> git.donarmstrong.com Git - lib.git/commitdiff
update makefile to compile files
authorDon Armstrong <don@donarmstrong.com>
Sat, 31 Mar 2007 07:28:00 +0000 (07:28 +0000)
committerDon Armstrong <don@donarmstrong.com>
Sat, 31 Mar 2007 07:28:00 +0000 (07:28 +0000)
emacs_el/Makefile

index ddf9fdbeea0d6a095657e2dca982279f5b8b12c9..14ee7a20a64f3ee797edc5d60396e86f9e404b48 100644 (file)
@@ -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