X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/3577cff0c7c01191bf5dc01ac5f8512e2eb25dc5..3617aa76fcfd1ac96e6888867ab438587df1753f:/Makefile.in diff --git a/Makefile.in b/Makefile.in index d115b927f2..0ba5418083 100644 --- a/Makefile.in +++ b/Makefile.in @@ -175,6 +175,8 @@ docdir=@docdir@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +# By default, we uphold the dignity of our programs. +INSTALL_STRIP = # ============================= Targets ============================== @@ -197,13 +199,12 @@ SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile src/Makefile oldXMenu/Makefile COPYDIR = ${srcdir}/etc ${srcdir}/lisp COPYDESTS = ${etcdir} ${lispdir} -all: paths-force ${SUBDIR} +all: ${SUBDIR} removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g' -# Note that sed is not in /bin on 386bsd. -src/paths.h: Makefile ${srcdir}/src/paths.in - @echo "Producing \`src/paths.h' from \`src/paths.in'." +# Generate paths.h from paths.in. This target is invoked by `configure'. +paths-force: FRC @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \ buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ sed < ${srcdir}/src/paths.in > paths.h.$$$$ \ @@ -217,38 +218,9 @@ src/paths.h: Makefile ${srcdir}/src/paths.in -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \ ${srcdir}/move-if-change paths.h.$$$$ src/paths.h -# For `make all', -# we force the rebuilding of src/paths.h because the user might give -# make different values for the various directories. Since we use -# move-if-change, src/paths.h only actually changes if the user did -# something notable, so the only unnecessary work we do is in building -# paths.h.$$, which isn't much. -# Note that sed is not in /bin on 386bsd. -# We depend on src/paths.h here to prevent simultaneous execution of -# that rule and this one, in a parallel make. -# It is possible for paths.h to be updated twice--but that would happen anyway. -paths-force: FRC src/paths.h - @echo "Producing \`src/paths.h' from \`src/paths.in'." - @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \ - buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ - sed < ${srcdir}/src/paths.in > paths.h.$$$$ \ - -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \ - -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \ - -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ - -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ - -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ - -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \ - -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \ - -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \ - ${srcdir}/move-if-change paths.h.$$$$ src/paths.h - -src: lib-src FRC src/paths.h +src: lib-src FRC -# This ought to depend on src/paths.h, so that in parallel make -# src/paths.h will be available for the compilations in lib-src. -# But that causes trouble in `make install' if a different prefix -# is specified at that time. -lib-src: FRC src/paths.h +lib-src: FRC .RECURSIVE: ${SUBDIR} @@ -292,18 +264,21 @@ lwlib/Makefile: lwlib/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. -## We don't depend on `all', but rather on ${SUBDIR}, so that we won't -## ever modify src/paths.h. -install: ${SUBDIR} install-arch-dep install-arch-indep blessmail +### 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 @true ### Install the executables that were compiled specifically for this machine. +### It would be nice to do something for a parallel make +### to ensure that install-arch-indep finishes before this starts. install-arch-dep: mkdir (cd lib-src; \ $(MAKE) install $(MFLAGS) prefix=${prefix} \ exec_prefix=${exec_prefix} bindir=${bindir} \ - libexecdir=${libexecdir} archlibdir=${archlibdir}) - ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version} + libexecdir=${libexecdir} archlibdir=${archlibdir} \ + INSTALL_STRIP=${INSTALL_STRIP}) + ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs ${bindir}/emacs-${version} -chmod 1755 ${bindir}/emacs-${version} rm -f ${bindir}/$(EMACS) -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) @@ -350,9 +325,16 @@ install-arch-indep: mkdir 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 ./etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ (cd $(docdir); chmod a+r DOC*; rm DOC) \ else true; fi + if [ -r ./lisp ] \ + && [ 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 - ); \ + else true; fi thisdir=`/bin/pwd`; \ if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ then \ @@ -364,7 +346,7 @@ install-arch-indep: mkdir cd ${srcdir}/info ; \ (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \ (cd $${thisdir}; chmod a+r ${infodir}/dir); \ - for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \ + for f in ccmode* cl* dired-x* ediff* emacs* forms* gnus* info* message* mh-e* sc* vip*; do \ (cd $${thisdir}; \ ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ chmod a+r ${infodir}/$$f); \ @@ -378,6 +360,10 @@ install-arch-indep: mkdir chmod a+r ${man1dir}/$${page}${manext}); \ done +### Build Emacs and install it, stripping binaries while installing them. +install-strip: + $(MAKE) INSTALL_STRIP=-s + ### Build all the directories we're going to install Emacs in. Since ### we may be creating several layers of directories (for example, ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs @@ -458,7 +444,7 @@ clean: FRC top_distclean=\ rm -f config.status config.cache config.log ; \ rm -f Makefile ${SUBDIR_MAKEFILES} ; \ - (cd lock && rm -f *) + (cd lock && (rm * || true)) distclean: FRC (cd src; $(MAKE) $(MFLAGS) distclean) (cd oldXMenu; $(MAKE) $(MFLAGS) distclean) @@ -492,8 +478,8 @@ maintainer-clean: FRC ### it deletes backup and autosave files too. extraclean: for i in ${SUBDIR}; do (cd $$i; $(MAKE) $(MFLAGS) extraclean); done - -(cd lock && rm *) - -rm config.status config-tmp-* + ${top_distclean} + -rm config-tmp-* -rm -f *~ \#* ### Unlocking and relocking. The idea of these productions is to reduce