]> code.delx.au - gnu-emacs/commitdiff
enable in-place GUI
authorSam Steingold <sds@gnu.org>
Wed, 3 Dec 2014 20:45:23 +0000 (15:45 -0500)
committerSam Steingold <sds@gnu.org>
Wed, 3 Dec 2014 20:45:23 +0000 (15:45 -0500)
* nextstep/Makefile.in (links): New phony target to create a fake
installation pointing back to the source tree to run GUI Emacs
in-place (http://article.gmane.org/gmane.emacs.devel:178330).

nextstep/ChangeLog
nextstep/Makefile.in

index 4bb84bcae4ddba309a37e7b857f267c765a26884..8b44d5c149c45a47455ab0f1f9493085fa2253eb 100644 (file)
@@ -1,3 +1,9 @@
+2014-12-03  Sam Steingold  <sds@gnu.org>
+
+       * Makefile.in (links): New phony target to create a fake
+       installation pointing back to the source tree to run GUI Emacs
+       in-place (http://article.gmane.org/gmane.emacs.devel:178330).
+
 2014-11-22  Glenn Morris  <rgm@gnu.org>
 
        * templates/Info-gnustep.plist.in: Let configure set URL.
index 52f321109b77cb5dbbd13f7e635ff34a0ef0b433..c07fe85ba8dd27a43eb18216ea07b82e0a8f04a5 100644 (file)
@@ -8,12 +8,12 @@
 ## it under the terms of the GNU General Public License as published by
 ## the Free Software Foundation, either version 3 of the License, or
 ## (at your option) any later version.
-## 
+##
 ## GNU Emacs is distributed in the hope that it will be useful,
 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ## GNU General Public License for more details.
-## 
+##
 ## You should have received a copy of the GNU General Public License
 ## along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
@@ -50,10 +50,23 @@ ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} | \
   ${ns_appbindir}
        cp -f ../src/emacs${EXEEXT} $@
 
-.PHONY: all
+.PHONY: all links
 
 all: ${ns_appdir} ${ns_appbindir}/Emacs
 
+# create a fake installation pointing back to the source tree
+# to run GUI Emacs in-place
+links : ../src/emacs${EXEEXT} | ${ns_appbindir}
+       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
 
 .PHONY: clean distclean bootstrap-clean maintainer-clean