]> code.delx.au - gnu-emacs/blobdiff - nextstep/Makefile.in
Don't install keyboard hook when debugged on MS-Windows
[gnu-emacs] / nextstep / Makefile.in
index c07fe85ba8dd27a43eb18216ea07b82e0a8f04a5..9aa034ad98d21350b5e12ae98d2fb5ae0d6168d1 100644 (file)
@@ -1,6 +1,6 @@
 ### @configure_input@
 
-## Copyright (C) 2012-2014 Free Software Foundation, Inc.
+## Copyright (C) 2012-2016 Free Software Foundation, Inc.
 
 ## This file is part of GNU Emacs.
 
 SHELL = @SHELL@
 
 srcdir = @srcdir@
+abs_builddir = @abs_builddir@
+abs_top_builddir = @abs_top_builddir@
 EXEEXT = @EXEEXT@
 
+# abs_top_srcdir may contain ".."
+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}
@@ -43,30 +57,38 @@ ${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
            ( cd ${ns_appdir} ; umask 022; tar xf - )
        touch ${ns_appdir}
 
-${ns_appbindir}:
-       ${MKDIR_P} $@
-
-${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} | \
-  ${ns_appbindir}
+## Don't create ns_appbindir via an order-only prerequisite, because
+## on GNUstep ns_appbindir and ns_bindir are the same, so
+## the rule for ns_appbindir would conflict with that for ns_appdir.
+${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} | ${ns_appbindir}
+.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
-       for f in $(shell cd ${ns_appsrc}; find . -type f); do ln -s $(shell pwd -P)/${ns_appsrc}/$$f ${ns_appdir}/$$f; done
-       ln -s ../../../../../lisp ${ns_appdir}/Contents/Resources
-       ln -s ../../../../../etc ${ns_appdir}/Contents/Resources
-       ln -s ../../../../../info ${ns_appdir}/Contents/Resources
-       ln -s ../../../../src/emacs${EXEEXT} ${ns_appbindir}/Emacs
-       ln -s ../../../../lib-src ${ns_appbindir}/bin
-       ln -s ../../../../lib-src ${ns_appbindir}/libexec
+       for f in $(shell cd ${ns_appsrc}; find . -type f); do ln -s $(shell cd ${ns_appsrc}; pwd -P)/$$f ${ns_appdir}/$$f; done
+       ln -s $(top_srcdir_abs)/lisp ${ns_appdir}/Contents/Resources
+       ln -s $(top_srcdir_abs)/info ${ns_appdir}/Contents/Resources
+       ${MKDIR_P} ${ns_appbindir}
+       ln -s $(abs_top_builddir)/src/emacs${EXEEXT} ${ns_appbindir}/Emacs
+       ln -s $(abs_top_builddir)/lib-src ${ns_appbindir}/bin
+       ln -s $(abs_top_builddir)/lib-src ${ns_appbindir}/libexec
+       ${MKDIR_P} ${ns_appdir}/Contents/Resources/etc
+       for f in $(shell cd $(top_srcdir_abs)/etc; ls); do ln -s $(top_srcdir_abs)/etc/$$f ${ns_appdir}/Contents/Resources/etc; done
+       ln -s $(abs_top_builddir)/etc/DOC ${ns_appdir}/Contents/Resources/etc
+       @echo if the next find prints something, the installation failed
+       find ${ns_appdir} -exec test \! -e {} \; -ls
 
 .PHONY: clean distclean bootstrap-clean maintainer-clean