diff options
| author | Andreas Schwab | 2004-08-06 19:06:49 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-08-06 19:06:49 +0000 |
| commit | 73e3e7c2c8d0d245859fd625f009edd81a7257f9 (patch) | |
| tree | 45fc7a24517c5f6e06e3488e1b61bf09ac280bf1 | |
| parent | 8dbc532e462f384899acfa1f17d687a2fdef6400 (diff) | |
| download | emacs-73e3e7c2c8d0d245859fd625f009edd81a7257f9.tar.gz emacs-73e3e7c2c8d0d245859fd625f009edd81a7257f9.zip | |
(install-arch-indep, uninstall): Add flymake.
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 35cc2798e32..05d7b556256 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -475,7 +475,7 @@ install-arch-indep: mkdir info | |||
| 475 | chmod a+r ${infodir}/dir); \ | 475 | chmod a+r ${infodir}/dir); \ |
| 476 | fi; \ | 476 | fi; \ |
| 477 | cd ${srcdir}/info ; \ | 477 | cd ${srcdir}/info ; \ |
| 478 | for f in ada-mode* autotype* calc* ccmode* cl* dired-x* ebrowse* ediff* efaq* eintr* elisp* emacs* emacs-xtra* eshell* eudc* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* ses* speedbar* tramp* vip* widget* woman* smtpmail*; do \ | 478 | for f in ada-mode* autotype* calc* ccmode* cl* dired-x* ebrowse* ediff* efaq* eintr* elisp* emacs* emacs-xtra* eshell* eudc* flymake* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* ses* speedbar* tramp* vip* widget* woman* smtpmail*; do \ |
| 479 | (cd $${thisdir}; \ | 479 | (cd $${thisdir}; \ |
| 480 | ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ | 480 | ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ |
| 481 | chmod a+r ${infodir}/$$f); \ | 481 | chmod a+r ${infodir}/$$f); \ |
| @@ -485,7 +485,7 @@ install-arch-indep: mkdir info | |||
| 485 | thisdir=`/bin/pwd`; \ | 485 | thisdir=`/bin/pwd`; \ |
| 486 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ | 486 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ |
| 487 | then \ | 487 | then \ |
| 488 | for f in ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq elisp eintr emacs emacs-mime emacs-xtra eshell eudc forms gnus idlwave info message mh-e pcl-cvs reftex sc ses speedbar tramp vip viper widget woman smtpmail; do \ | 488 | 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 pcl-cvs reftex sc ses speedbar tramp vip viper widget woman smtpmail; do \ |
| 489 | (cd $${thisdir}; \ | 489 | (cd $${thisdir}; \ |
| 490 | ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/$$f); \ | 490 | ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/$$f); \ |
| 491 | done; \ | 491 | done; \ |
| @@ -551,7 +551,7 @@ uninstall: | |||
| 551 | done | 551 | done |
| 552 | (cd ${archlibdir} && rm -f fns-*) | 552 | (cd ${archlibdir} && rm -f fns-*) |
| 553 | -rm -rf ${libexecdir}/emacs/${version} | 553 | -rm -rf ${libexecdir}/emacs/${version} |
| 554 | (cd ${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* forms* gnus* info* mh-e* sc* ses* vip* smtpmail*) | 554 | (cd ${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* sc* ses* vip* smtpmail*) |
| 555 | (cd ${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext}) | 555 | (cd ${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext}) |
| 556 | (cd ${bindir} && rm -f $(EMACSFULL) $(EMACS)) | 556 | (cd ${bindir} && rm -f $(EMACSFULL) $(EMACS)) |
| 557 | 557 | ||