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

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

[ELPA-diffs] elpa r413: * GNUmakefile (%.elc): Don't depend on $(autoloa


From: Stefan Monnier
Subject: [ELPA-diffs] elpa r413: * GNUmakefile (%.elc): Don't depend on $(autoloads) since that causes
Date: Thu, 27 Jun 2013 16:05:51 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 413
revision-id: address@hidden
parent: address@hidden
committer: Stefan Monnier <address@hidden>
branch nick: elpa
timestamp: Thu 2013-06-27 12:05:44 -0400
message:
  * GNUmakefile (%.elc): Don't depend on $(autoloads) since that causes
  constant recompilation of everything.
  (elcs): New target.
  (all-in-place): Run elcs in a submake, after updating autoloads.
modified:
  GNUmakefile                    makefile-20110701202856-l9xk4avwtorg7t6u-1
=== modified file 'GNUmakefile'
--- a/GNUmakefile       2013-06-27 04:22:16 +0000
+++ b/GNUmakefile       2013-06-27 16:05:44 +0000
@@ -118,13 +118,16 @@
 elcs := $(call SET-diff, $(naive_elcs), $(patsubst %.el, %.elc, $(nbc_els)))
 
 # '(dolist (al (quote ($(patsubst %, "%", $(autoloads))))) (load 
(expand-file-name al) nil t))'
-%.elc: %.el $(autoloads)
+%.elc: %.el
        @echo 'EMACS -f batch-byte-compile $<'
        @$(EMACS) --batch \
            --eval "(setq package-directory-list '(\"$(abspath packages)\"))" \
            --eval '(package-initialize)' \
            -L $(dir $@) -f batch-byte-compile $<
 
+.PHONY: elcs
+elcs: $(elcs)
+
 # Remove .elc files that don't have a corresponding .el file any more.
 extra_elcs := $(call SET-diff, $(current_elcs), $(naive_elcs))
 .PHONY: $(extra_elcs)
@@ -145,5 +148,7 @@
 #          --eval '(setq d (with-current-buffer b (package-buffer-info)))' \
 #          --eval '(package-generate-description-file d "$(dir $@)")'
 
-
-all-in-place: $(extra_elcs) $(autoloads) $(elcs) # $(single_pkgs)
+.PHONY: all-in-place
+all-in-place: $(extra_elcs) $(autoloads) # $(single_pkgs)
+       # Do them in a sub-make, so that autoloads are done first.
+       $(MAKE) elcs


reply via email to

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