diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-12-24 02:28:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-12-24 02:28:35 +0000 |
commit | 8b9e6f709ad75e29ca28d3e21dce53a7e8788ae9 (patch) | |
tree | 53c0377224e8412ebb0e11c5eef4b3b81734a9f0 /Makefile.in | |
parent | 1c9a9eae4b10f172073cde90e4bd68c99c0212ac (diff) | |
download | emacs-8b9e6f709ad75e29ca28d3e21dce53a7e8788ae9.tar.gz |
(mkdir): Make only the lockdir writable.
(libdir): Use @libdir@.
(install): Add empty command.
(install): Depend on ${SUBDIR}, not `all'.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 6597cf56697..73717cf6f35 100644 --- a/Makefile.in +++ b/Makefile.in @@ -88,7 +88,7 @@ statedir=@statedir@ # Where to install and expect executable files to be run by Emacs # rather than directly by users, and other architecture-dependent # data. ${archlibdir} is a subdirectory of this. -libdir=${exec_prefix}/lib +libdir=@libdir@ # Where to install Emacs's man pages, and what extension they should have. mandir=@mandir@ @@ -245,7 +245,9 @@ oldXMenu/Makefile: oldXMenu/Makefile.in config.status ## place with their files read-only (perhaps because they are checked ## into RCS). In order to make this safe, we make sure that the ## source exists and is distinct from the destination. -install: all do-install +## We don't depend on `all', but rather on ${SUBDIR}, so that we won't +## ever modify src/paths.h. +install: ${SUBDIR} do-install ; ### Note that we copy the DOC-* files from the build etc directory ### as well as lots of things from ${srcdir}/etc. @@ -306,7 +308,7 @@ mkdir: FRC.mkdir ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ ${bindir} ${datadir} ${libdir} \ `echo ${locallisppath} | sed 's/:/ /'` - -chmod 777 ${COPYDESTS} ${lockdir} + -chmod 777 ${lockdir} ### Delete all the installed files that the `install' target would ### create (but not the noninstalled files such as `make all' would @@ -457,7 +459,9 @@ check: dist: cd ${srcdir}; make-dist -info: +.PHONY: info dvi dist check +force-info: +info: force-info (cd ${srcdir}/man; $(MAKE) $(MFLAGS) info) dvi: (cd ${srcdir}/man; $(MAKE) $(MFLAGS) dvi) |