emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117394: nextstep: trivial Makefile simplification


From: Glenn Morris
Subject: [Emacs-diffs] trunk r117394: nextstep: trivial Makefile simplification
Date: Wed, 25 Jun 2014 06:39:19 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117394
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2014-06-24 23:39:03 -0700
message:
  nextstep: trivial Makefile simplification
  
  * nextstep/Makefile.in (${ns_appbindir}): New.
  (${ns_appbindir}/Emacs): Use order-only prereq to create output dir.
modified:
  nextstep/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-8711
  nextstep/Makefile.in           makefile.in-20120916183945-sy6skp4ojfe19n99-1
=== modified file 'nextstep/ChangeLog'
--- a/nextstep/ChangeLog        2014-06-15 00:17:21 +0000
+++ b/nextstep/ChangeLog        2014-06-25 06:39:03 +0000
@@ -1,3 +1,8 @@
+2014-06-25  Glenn Morris  <address@hidden>
+
+       * Makefile.in (${ns_appbindir}): New.
+       (${ns_appbindir}/Emacs): Use order-only prereq to create output dir.
+
 2014-06-15  Glenn Morris  <address@hidden>
 
        * Makefile.in (bootstrap-clean): New.

=== modified file 'nextstep/Makefile.in'
--- a/nextstep/Makefile.in      2014-06-15 00:17:21 +0000
+++ b/nextstep/Makefile.in      2014-06-25 06:39:03 +0000
@@ -43,9 +43,12 @@
            ( cd ${ns_appdir} ; umask 022; tar xf - )
        touch ${ns_appdir}
 
-${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}
-       ${MKDIR_P} ${ns_appbindir}
-       cp -f ../src/emacs${EXEEXT} ${ns_appbindir}/Emacs
+${ns_appbindir}:
+       ${MKDIR_P} $@
+
+${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} | \
+  ${ns_appbindir}
+       cp -f ../src/emacs${EXEEXT} $@
 
 .PHONY: all
 


reply via email to

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