monnier pushed a commit to branch master
in repository elpa.
commit e2ac273a2daa7949b97c02c553626038634f367e
Author: Teemu Likonen <[email protected]>
Date: Thu Jun 13 17:46:03 2013 +0300
Makefile: Only byte-compile wcheck-mode.el
---
Makefile | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 7168382..b644579 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,6 @@ MAIN := $(BASE).el
PKG := $(BASE)-pkg.el
FILES := $(MAIN) $(PKG) COPYING README
NAME := $(BASE)-$(VERSION)
-ELC := $(patsubst %.el,%.elc,$(wildcard *.el))
elpa: $(NAME).tar
sign: $(NAME).tar.sig
@@ -27,13 +26,13 @@ $(PKG):
README: README.md
cp -f -- $< $@
-$(ELC): %.elc: %.el
+$(BASE).elc: %.elc: %.el
emacs -Q --batch -f batch-byte-compile $<
tag:
git tag -s $(VERSION) -m 'Version $(VERSION)' HEAD
clean:
- rm -f -- $(PKG) $(BASE)*.tar* README $(ELC)
+ rm -f -- $(PKG) $(BASE)*.tar* README $(BASE).elc
.PHONY: elpa sign tag clean elc