aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in26
1 files changed, 19 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in
index f4478308a42..e89159f4a3e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -134,6 +134,11 @@ man1dir=$(mandir)/man1
134# since there are now many packages documented with the texinfo 134# since there are now many packages documented with the texinfo
135# system, it is inappropriate to imply that it is part of Emacs. 135# system, it is inappropriate to imply that it is part of Emacs.
136infodir=@infodir@ 136infodir=@infodir@
137INFO_FILES=ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq \
138 elisp eintr emacs emacs-mime emacs-xtra eshell eudc flymake \
139 forms gnus idlwave info message mh-e newsticker org pcl-cvs \
140 pgg reftex sc ses sieve speedbar tramp vip viper widget \
141 woman smtpmail url rcirc erc
137 142
138# Directory for local state files for all programs. 143# Directory for local state files for all programs.
139localstatedir=@localstatedir@ 144localstatedir=@localstatedir@
@@ -497,19 +502,20 @@ install-arch-indep: mkdir info
497 chmod a+r $(DESTDIR)${infodir}/dir); \ 502 chmod a+r $(DESTDIR)${infodir}/dir); \
498 fi; \ 503 fi; \
499 cd ${srcdir}/info ; \ 504 cd ${srcdir}/info ; \
500 for f in ada-mode* autotype* calc* ccmode* cl* dired-x* ebrowse* ediff* efaq* eintr* elisp* emacs* emacs-mime* emacs-xtra* eshell* eudc* flymake* forms* gnus* idlwave* info* message* mh-e* newsticker* org* pcl-cvs* pgg* reftex* sc* ses* sieve* speedbar* tramp* vip* widget* woman* smtpmail* url* rcirc* erc*; do \ 505 for elt in $(INFO_FILES); do \
501 (cd $${thisdir}; \ 506 for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
502 ${INSTALL_DATA} ${srcdir}/info/$$f $(DESTDIR)${infodir}/$$f; \ 507 ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \
503 chmod a+r $(DESTDIR)${infodir}/$$f); \ 508 chmod a+r $(DESTDIR)${infodir}/$$f; \
509 done; \
504 done); \ 510 done); \
505 else true; fi 511 else true; fi
506 -unset CDPATH; \ 512 -unset CDPATH; \
507 thisdir=`/bin/pwd`; \ 513 thisdir=`/bin/pwd`; \
508 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \ 514 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \
509 then \ 515 then \
510 for f in ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq elisp eintr emacs emacs-mime emacs-xtra eshell eudc flymake forms gnus idlwave info message mh-e newsticker org pcl-cvs pgg reftex sc ses sieve speedbar tramp vip viper widget woman smtpmail url rcirc erc; do \ 516 for elt in $(INFO_FILES); do \
511 (cd $${thisdir}; \ 517 (cd $${thisdir}; \
512 ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$f); \ 518 ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
513 done; \ 519 done; \
514 else true; fi 520 else true; fi
515 -chmod -R a+r $(DESTDIR)${datadir}/emacs ${COPYDESTS} $(DESTDIR)${infodir} 521 -chmod -R a+r $(DESTDIR)${datadir}/emacs ${COPYDESTS} $(DESTDIR)${infodir}
@@ -573,7 +579,13 @@ uninstall:
573 done 579 done
574 (cd $(DESTDIR)${archlibdir} && rm -f fns-*) 580 (cd $(DESTDIR)${archlibdir} && rm -f fns-*)
575 -rm -rf $(DESTDIR)${libexecdir}/emacs/${version} 581 -rm -rf $(DESTDIR)${libexecdir}/emacs/${version}
576 (cd $(DESTDIR)${infodir} && rm -f cl* ada-mode* autotype* calc* ccmode* ebrowse* efaq* eintr elisp* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* tramp* widget* woman* dired-x* ediff* emacs* emacs-xtra* flymake* forms* gnus* info* mh-e* newsticker* org* sc* ses* vip* smtpmail* url* rcirc* erc*) 582 (cd $(DESTDIR)${infodir} && \
583 for elt in $(INFO_FILES); do \
584 $(INSTALL_INFO) --remove --info-dir=. $$elt; \
585 for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
586 rm -f $$f; \
587 done; \
588 done;)
577 (cd $(DESTDIR)${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext}) 589 (cd $(DESTDIR)${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext})
578 (cd $(DESTDIR)${bindir} && rm -f $(EMACSFULL) $(EMACS)) 590 (cd $(DESTDIR)${bindir} && rm -f $(EMACSFULL) $(EMACS))
579 591