diff options
| author | Steven Tamm | 2003-01-07 05:46:31 +0000 |
|---|---|---|
| committer | Steven Tamm | 2003-01-07 05:46:31 +0000 |
| commit | 52cd7d02cc68d7dccc2d98be9f0f0fa70c083668 (patch) | |
| tree | 2fbb43158aceb5664b96e62267afb4876d1e490c /Makefile.in | |
| parent | ca2135af191408b1d7a7039f21ed9c931edc5250 (diff) | |
| download | emacs-52cd7d02cc68d7dccc2d98be9f0f0fa70c083668.tar.gz emacs-52cd7d02cc68d7dccc2d98be9f0f0fa70c083668.zip | |
* configure.in: New option, --enable-carbon-app, to specify
that the application should be installed
* Makefile.in (install-arch-dep): On Mac OS X, install the
Emacs.app application if carbon-app is enabled
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 99671ad8a7e..85f2425c81f 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -141,6 +141,9 @@ VPATH=@srcdir@ | |||
| 141 | # Where to find the application default. | 141 | # Where to find the application default. |
| 142 | x_default_search_path=@x_default_search_path@ | 142 | x_default_search_path=@x_default_search_path@ |
| 143 | 143 | ||
| 144 | # Location to install Emacs.app on Mac OS X | ||
| 145 | carbon_appdir=@carbon_appdir@ | ||
| 146 | |||
| 144 | # ==================== Emacs-specific directories ==================== | 147 | # ==================== Emacs-specific directories ==================== |
| 145 | 148 | ||
| 146 | # These variables hold the values Emacs will actually use. They are | 149 | # These variables hold the values Emacs will actually use. They are |
| @@ -365,6 +368,12 @@ install-arch-dep: mkdir | |||
| 365 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ | 368 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ |
| 366 | else true; fi ; \ | 369 | else true; fi ; \ |
| 367 | done | 370 | done |
| 371 | if test "${carbon_appdir}" != ""; then \ | ||
| 372 | umask 022; mkdir -p ${carbon_appdir}/Emacs.app; \ | ||
| 373 | (cd mac/Emacs.app; tar -chf - . ) | \ | ||
| 374 | (cd ${carbon_appdir}/Emacs.app; umask 022; tar -xvf - \ | ||
| 375 | && cat > /dev/null) || exit 1; \ | ||
| 376 | fi | ||
| 368 | 377 | ||
| 369 | ### Install the files that are machine-independent. | 378 | ### Install the files that are machine-independent. |
| 370 | ### Most of them come straight from the distribution; | 379 | ### Most of them come straight from the distribution; |