emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 51b81a6 4/7: Fixed Makefile


From: Ian Dunn
Subject: [elpa] master 51b81a6 4/7: Fixed Makefile
Date: Sat, 4 Mar 2017 11:10:24 -0500 (EST)

branch: master
commit 51b81a63c297958e3b96477a7bd04a9145d15eaf
Author: Ian Dunn <address@hidden>
Commit: Ian Dunn <address@hidden>

    Fixed Makefile
    
    * Makefile: Use .elc files from source files instead of existing .elc files.
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index eba3a7d..69deb30 100644
--- a/Makefile
+++ b/Makefile
@@ -23,16 +23,16 @@ SITELISP=$(PREFIX)/share/emacs/site-lisp/enwc
 
 EMACS=emacs --batch
 ALLSRC= enwc-backend.el enwc.el enwc-wicd.el enwc-nm.el
-ALLELC=$(wildcard *.elc)
+ALLELC=$(patsubst %.el,%.elc,$(SOURCE))
 
 SOURCE=$(ALLSRC)
-TARGET=$(patsubst %.el,%.elc,$(SOURCE))
+TARGET=$(ALLELC)
 
 .PHONY: all install lisp clean
 .PRECIOUS: %.elc
 all: lisp
 
-lisp: $(ALLELC)
+lisp: $(TARGET)
 
 %.elc: %.el
        @$(EMACS) \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]