emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117428: * lisp/Makefile.in (doit): Remove force rul


From: Glenn Morris
Subject: [Emacs-diffs] trunk r117428: * lisp/Makefile.in (doit): Remove force rule.
Date: Sat, 28 Jun 2014 01:26:12 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117428
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2014-06-27 21:26:09 -0400
message:
  * lisp/Makefile.in (doit): Remove force rule.
  (custom-deps, finder-data, autoloads, update-subdirs)
  (compile-one-process): PHONY targets do not need force rules.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/Makefile.in               
makefile.in-20091113204419-o5vbwnq5f7feedwu-1831
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-06-28 01:16:23 +0000
+++ b/lisp/ChangeLog    2014-06-28 01:26:09 +0000
@@ -1,5 +1,9 @@
 2014-06-28  Glenn Morris  <address@hidden>
 
+       * Makefile.in (doit): Remove force rule.
+       (custom-deps, finder-data, autoloads, update-subdirs)
+       (compile-one-process): PHONY targets do not need force rules.
+
        * Makefile.in (compile-main, compile, compile-always):
        No need to explicitly pass variables to ourself in recursive calls.
 

=== modified file 'lisp/Makefile.in'
--- a/lisp/Makefile.in  2014-06-28 01:16:23 +0000
+++ b/lisp/Makefile.in  2014-06-28 01:26:09 +0000
@@ -149,9 +149,7 @@
 # we add them here to make sure they get built.
 all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el
 
-doit:
-
-.PHONY: all doit custom-deps finder-data autoloads update-subdirs
+.PHONY: all custom-deps finder-data autoloads update-subdirs
 
 # custom-deps and finder-data both used to scan _all_ the *.el files.
 # This could lead to problems in parallel builds if automatically
@@ -169,7 +167,7 @@
 # (see finder-no-scan-regexp and custom-dependencies-no-scan-regexp).
 $(lisp)/cus-load.el:
        $(MAKE) custom-deps
-custom-deps: doit
+custom-deps:
        $(setwins_almost); \
        echo Directories: $$wins; \
        $(emacs) -l cus-dep \
@@ -178,7 +176,7 @@
 
 $(lisp)/finder-inf.el:
        $(MAKE) finder-data
-finder-data: doit
+finder-data:
        $(setwins_finder); \
        echo Directories: $$wins; \
        $(emacs) -l finder \
@@ -192,7 +190,7 @@
 # Note that we set no-update-autoloads in _generated_ leim files.
 # If you want to allow autoloads in such files, remove that,
 # and make this depend on leim.
-autoloads: $(LOADDEFS) doit
+autoloads: $(LOADDEFS)
        cd $(lisp) && chmod +w $(AUTOGEN_VCS)
        $(setwins_almost); \
        echo Directories: $$wins; \
@@ -216,7 +214,7 @@
 # we know that if we have an emacs executable, we also have a subdirs.el.
 $(lisp)/subdirs.el:
        $(MAKE) update-subdirs
-update-subdirs: doit
+update-subdirs:
        $(setwins_for_subdirs); \
        for file in $$wins; do \
           $(srcdir)/../build-aux/update-subdirs $$file; \
@@ -369,7 +367,7 @@
 # Compile all Lisp files.  This is like `compile' but compiles files
 # unconditionally.  Some files don't actually get compiled because they
 # set the local variable no-byte-compile.
-compile-always: doit
+compile-always:
        cd $(lisp) && rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
        $(MAKE) compile
 
@@ -402,7 +400,7 @@
 # There is no reason to use this rule unless you only have a single
 # core and CPU time is an issue.
 .PHONY: compile-one-process
-compile-one-process: doit $(LOADDEFS) compile-first 
$(lisp)/progmodes/cc-mode.elc
+compile-one-process: $(LOADDEFS) compile-first $(lisp)/progmodes/cc-mode.elc
        $(emacs) $(BYTE_COMPILE_FLAGS) \
            --eval "(batch-byte-recompile-directory 0)" $(lisp)
 


reply via email to

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