diff options
| author | Glenn Morris | 2014-06-24 23:39:03 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-24 23:39:03 -0700 |
| commit | 002b161a30f2e819a474fdde9d2b36c32e38786c (patch) | |
| tree | cb3dc94b9c42c885069b27f7ad8db32823f44321 | |
| parent | 4f2a67acd0cb0fcae13219a36fb75fabc85f64c0 (diff) | |
| download | emacs-002b161a30f2e819a474fdde9d2b36c32e38786c.tar.gz emacs-002b161a30f2e819a474fdde9d2b36c32e38786c.zip | |
nextstep: trivial Makefile simplification
* nextstep/Makefile.in (${ns_appbindir}): New.
(${ns_appbindir}/Emacs): Use order-only prereq to create output dir.
| -rw-r--r-- | nextstep/ChangeLog | 5 | ||||
| -rw-r--r-- | nextstep/Makefile.in | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/nextstep/ChangeLog b/nextstep/ChangeLog index a3d9b3aa283..45a2dbf427c 100644 --- a/nextstep/ChangeLog +++ b/nextstep/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-06-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (${ns_appbindir}): New. | ||
| 4 | (${ns_appbindir}/Emacs): Use order-only prereq to create output dir. | ||
| 5 | |||
| 1 | 2014-06-15 Glenn Morris <rgm@gnu.org> | 6 | 2014-06-15 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * Makefile.in (bootstrap-clean): New. | 8 | * Makefile.in (bootstrap-clean): New. |
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in index 4198fb29453..52f321109b7 100644 --- a/nextstep/Makefile.in +++ b/nextstep/Makefile.in | |||
| @@ -43,9 +43,12 @@ ${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc} | |||
| 43 | ( cd ${ns_appdir} ; umask 022; tar xf - ) | 43 | ( cd ${ns_appdir} ; umask 022; tar xf - ) |
| 44 | touch ${ns_appdir} | 44 | touch ${ns_appdir} |
| 45 | 45 | ||
| 46 | ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} | 46 | ${ns_appbindir}: |
| 47 | ${MKDIR_P} ${ns_appbindir} | 47 | ${MKDIR_P} $@ |
| 48 | cp -f ../src/emacs${EXEEXT} ${ns_appbindir}/Emacs | 48 | |
| 49 | ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} | \ | ||
| 50 | ${ns_appbindir} | ||
| 51 | cp -f ../src/emacs${EXEEXT} $@ | ||
| 49 | 52 | ||
| 50 | .PHONY: all | 53 | .PHONY: all |
| 51 | 54 | ||