X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/3163d9cfa1a78860db33261ff9338a40887f90c1..9c2ae13ad0af77c58f936abcbb96b2819d9c1c48:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 15c197cc34..7b78f9c025 100644 --- a/Makefile.in +++ b/Makefile.in @@ -174,6 +174,7 @@ docdir=@docdir@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +INSTALL_INFO = install-info # By default, we uphold the dignity of our programs. INSTALL_STRIP = @@ -219,6 +220,9 @@ paths-force: FRC -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";') && \ ${srcdir}/move-if-change paths.h.$$$$ src/paths.h +# For parallel make, src should be build before leim. +leim: src + src: lib-src FRC lib-src: FRC src/config.stamp @@ -247,6 +251,9 @@ src/config.stamp: src/config.in config.status lib-src/Makefile: lib-src/Makefile.in config.status ./config.status +man/Makefile: man/Makefile.in config.status + ./config.status + oldXMenu/Makefile: oldXMenu/Makefile.in config.status ./config.status @@ -274,7 +281,7 @@ leim/Makefile: leim/Makefile.in config.status ## source exists and is distinct from the destination. ### We do install-arch-indep first because ### the executable needs the Lisp files and DOC file to work properly. -install: all install-arch-indep install-arch-dep blessmail install-leim +install: all install-arch-indep install-arch-dep install-leim blessmail @true ### Install the executables that were compiled specifically for this machine. @@ -314,8 +321,10 @@ install-arch-indep: mkdir [ -d $${dir} ] \ && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ && (echo "Copying $${dir} to $${dest}..." ; \ - (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \ + (cd $${dir}; tar -cf - . ) \ + |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ + chmod a+rx $${subdir} ; \ rm -rf $${subdir}/RCS ; \ rm -rf $${subdir}/CVS ; \ rm -f $${subdir}/\#* ; \ @@ -329,37 +338,64 @@ install-arch-indep: mkdir done -rm -f ${lispdir}/subdirs.el $(srcdir)/update-subdirs ${lispdir} - -chmod -R a+r ${COPYDESTS} + if [ -f ${datadir}/emacs/${version}/site-lisp/subdirs.el ]; \ + then true; \ + else \ + (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ + echo " (normal-top-level-add-subdirs-to-load-path))") \ + > ${datadir}/emacs/${version}/site-lisp/subdirs.el; \ + fi + chmod a+r ${datadir}/emacs/${version}/site-lisp/subdirs.el + -if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \ + then true; \ + else \ + (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ + echo " (normal-top-level-add-subdirs-to-load-path))") \ + > ${datadir}/emacs/site-lisp/subdirs.el; \ + fi + -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ then \ echo "Copying etc/DOC-* to ${docdir} ..." ; \ - (cd ./etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ - (cd $(docdir); chmod a+r DOC*; rm DOC) \ + (cd ./etc; tar -cf - DOC*) \ + |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \ + (cd $(docdir); chmod a+r DOC*; rm DOC); \ else true; fi if [ -r ./lisp ] \ + && [ -r ./lisp/simple.el ] \ && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ then \ echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ - (cd lisp; tar -cf - *.el *.elc)|(cd ${lispdir}; umask 0; tar -xvf - ); \ + (cd lisp; tar -cf - *.el *.elc) \ + |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \ else true; fi thisdir=`/bin/pwd`; \ if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ then \ (cd ${infodir}; \ - if [ -f dir ]; then \ - if [ ! -f dir.old ]; then mv -f dir dir.old; \ - else mv -f dir dir.bak; fi; \ + if [ -f dir ]; then true; \ + else \ + (cd $${thisdir}; \ + ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir; \ + chmod a+r ${infodir}/dir); \ fi; \ cd ${srcdir}/info ; \ - (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \ - (cd $${thisdir}; chmod a+r ${infodir}/dir); \ - for f in ccmode* cl* dired-x* ediff* emacs* forms* gnus* info* message* mh-e* sc* vip*; do \ + for f in ccmode* cl* customize* dired-x* ediff* emacs* forms* gnus* info* message* mh-e* reftex* sc* vip* widget*; do \ (cd $${thisdir}; \ ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ chmod a+r ${infodir}/$$f); \ done); \ else true; fi + -thisdir=`/bin/pwd`; \ + if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ + then \ + for f in ccmode cl customize dired-x ediff emacs forms gnus info message mh-e reftex sc vip widget; do \ + (cd $${thisdir}; \ + ${INSTALL_INFO} --dir-file=${infodir}/dir --info-file=${infodir}/$$f); \ + done; \ + else true; fi + -chmod -R a+r ${COPYDESTS} ${infodir} thisdir=`/bin/pwd`; \ cd ${srcdir}/etc; \ for page in emacs etags ctags ; do \ @@ -372,7 +408,7 @@ install-arch-indep: mkdir ### have separate target here instead of including it in ### `install-arch-indep'. People who extracted LEIM files after they ### insalled Emacs itself can install only LEIM files by this target. -install-leim: leim/Makefile +install-leim: leim/Makefile mkdir cd leim; $(MAKE) install ### Build Emacs and install it, stripping binaries while installing them. @@ -386,6 +422,8 @@ install-strip: mkdir: FRC $(srcdir)/mkinstalldirs ${COPYDESTS} ${infodir} ${man1dir} \ ${bindir} ${datadir} ${docdir} ${libexecdir} \ + ${datadir}/emacs/site-lisp \ + ${datadir}/emacs/${version}/site-lisp \ `echo ${locallisppath} | sed 's/:/ /g'` ### Delete all the installed files that the `install' target would @@ -460,7 +498,7 @@ clean: FRC top_distclean=\ rm -f config.status config.cache config.log ; \ rm -f Makefile ${SUBDIR_MAKEFILES} ; \ - (cd lock && (rm -f * || true)) + if [ -d lock ] ; then (cd lock && (rm -f * || true)); else true; fi distclean: FRC (cd src; $(MAKE) $(MFLAGS) distclean) (cd oldXMenu; $(MAKE) $(MFLAGS) distclean) @@ -510,13 +548,13 @@ extraclean: ### Note: it's no disaster if these productions miss a file or two; tar ### and VC will swiftly let you know if this happens, and it is easily ### corrected. -SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in PROBLEMS \ +SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in \ README configure make-dist move-if-change .PHONY: unlock relock unlock: - chmod u+w $(SOURCES) cpp/* + chmod u+w $(SOURCES) -(cd elisp; chmod u+w Makefile README *.texi) (cd etc; $(MAKE) $(MFLAGS) unlock) (cd lib-src; $(MAKE) $(MFLAGS) unlock) @@ -528,7 +566,7 @@ unlock: (cd src; $(MAKE) $(MFLAGS) unlock) relock: - chmod u-w $(SOURCES) cpp/* + chmod u-w $(SOURCES) -(cd elisp; chmod u-w Makefile README *.texi) (cd etc; $(MAKE) $(MFLAGS) relock) (cd lib-src; $(MAKE) $(MFLAGS) relock) @@ -539,8 +577,10 @@ relock: (cd lwlib; chmod u+w *.[ch] Makefile README) (cd src; $(MAKE) $(MFLAGS) relock) -TAGS tags: lib-src - cd ${srcdir}/src; $(MAKE) tags +TAGS tags: lib-src src + # The src subdir knows how to do the right thing + # even when the build directory and source dir are different. + cd src; $(MAKE) tags check: @echo "We don't have any tests for GNU Emacs yet." @@ -551,6 +591,9 @@ dist: .PHONY: info dvi dist check force-info: info: force-info - (cd ${srcdir}/man; $(MAKE) $(MFLAGS) info) + # Note that man/Makefile knows how to + # put the info files in $(srcdir), + # so we can do ok running make in the build dir. + (cd man; $(MAKE) $(MFLAGS) info) dvi: (cd man; $(MAKE) $(MFLAGS) dvi)