summaryrefslogtreecommitdiff
path: root/nextstep
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-06-24 21:26:29 -0400
committerGlenn Morris <rgm@gnu.org>2015-06-24 21:26:29 -0400
commite7128f626356098080a85ccd9b4a9467452616dd (patch)
tree83828c8c529704670bb433341b4e41483c9581d9 /nextstep
parent0a3c4eb74145635cf61629241c309f9104b72378 (diff)
downloademacs-e7128f626356098080a85ccd9b4a9467452616dd.tar.gz
* nextstep/Makefile.in (all): Make it the first target.
(../src/emacs${EXEEXT}): Add rule for making it.
Diffstat (limited to 'nextstep')
-rw-r--r--nextstep/Makefile.in18
1 files changed, 15 insertions, 3 deletions
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index 2b7933c12ad..04d87d889d4 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -33,11 +33,20 @@ top_srcdir_abs = $(shell cd @top_srcdir@; pwd -P)
@SET_MAKE@
MKDIR_P = @MKDIR_P@
+## Emacs.app.
ns_appdir = @ns_appdir@
+## GNUstep: ns_appdir; OS X: ns_appdir/Contents/MacOS
ns_appbindir = @ns_appbindir@
+## GNUstep/Emacs.base or Cocoa/Emacs.base.
ns_appsrc = @ns_appsrc@
+## GNUstep: GNUstep/Emacs.base/Resources/Info-gnustep.plist
+## OS X: Cocoa/Emacs.base/Contents/Info.plist
ns_check_file = @ns_appdir@/@ns_check_file@
+.PHONY: all
+
+all: ${ns_appdir} ${ns_appbindir}/Emacs
+
${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
rm -rf ${ns_appdir}
${MKDIR_P} ${ns_appdir}
@@ -55,13 +64,16 @@ ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}
${MKDIR_P} ${ns_appbindir}
cp -f ../src/emacs${EXEEXT} $@
-.PHONY: all links
+.PHONY: FORCE
-all: ${ns_appdir} ${ns_appbindir}/Emacs
+../src/emacs${EXEEXT}: FORCE
+ ${MAKE} -C ../src $(notdir $@)
# create a fake installation pointing back to the source tree
# to run GUI Emacs in-place
-links : ../src/emacs${EXEEXT}
+.PHONY: links
+
+links: ../src/emacs${EXEEXT}
for d in $(shell cd ${srcdir}/${ns_appsrc}; find . -type d); do ${MKDIR_P} ${ns_appdir}/$$d; done
for f in $(shell cd ${srcdir}/${ns_appsrc}; find . -type f); do ln -s $(shell cd ${srcdir}; pwd -P)/${ns_appsrc}/$$f ${ns_appdir}/$$f; done
for d in $(shell cd ${ns_appsrc}; find . -type d); do ${MKDIR_P} ${ns_appdir}/$$d; done