diff options
| author | Glenn Morris | 2013-08-27 00:57:39 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-08-27 00:57:39 -0700 |
| commit | 1857cd3f9ef1103d5ea2fcecbb7b2a6a9d6b2aef (patch) | |
| tree | 92b9a5563ab6e4a0aa3e530bee29ef98d532c1da /Makefile.in | |
| parent | 61ac6b9f821504ce12e0797a1fcf403e951d193b (diff) | |
| download | emacs-1857cd3f9ef1103d5ea2fcecbb7b2a6a9d6b2aef.tar.gz emacs-1857cd3f9ef1103d5ea2fcecbb7b2a6a9d6b2aef.zip | |
Move source for Emacs on MS Windows FAQ here from Emacs webpages repository
* Makefile.in (mostlyclean, clean, distclean, bootstrap-clean)
(maintainer-clean, check-declare): Remove pointless subshells.
Check cd return value.
* configure.ac (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32)
(DOCMISC_PDF_W32, DOCMISC_PS_W32): New output variables.
* Makefile.in (check-info-dir): Ignore efaq-w32.
* admin/admin.el (manual-misc-manuals): Use INFO_COMMON rather than
INFO_TARGETS.
* doc/misc/efaq-w32.texi: Move here from the web-pages repository.
* doc/misc/Makefile.in (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32)
(DOCMISC_PDF_W32, DOCMISC_PS_W32): New configure output variables.
(INFO_COMMON, INFO_INSTALL): New derivations of INFO_TARGETS.
(DVI_TARGETS, HTML_TARGETS, PDF_TARGETS, PS_TARGETS):
Add DOCMISC_*_W32 variables.
(echo-info): Use INFO_INSTALL rather than INFO_TARGETS.
(efaq_w32_deps): New variable.
(efaq-w32, $(buildinfodir)/efaq-w32$(INFO_EXT), efaq-w32.dvi)
(efaq-w32.pdf, efaq-w32.html): New rules.
(clean): Remove efaq-w32 products.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index e4b5ef3d07c..d5cd6bd8d20 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -1026,13 +1026,15 @@ info: force-info | |||
| 1026 | fi | 1026 | fi |
| 1027 | 1027 | ||
| 1028 | # The info/dir file must be updated by hand when new manuals are added. | 1028 | # The info/dir file must be updated by hand when new manuals are added. |
| 1029 | # Cannot add an info/dir entry for efaq-w32 since it is not installed | ||
| 1030 | # on all platforms. | ||
| 1029 | check-info-dir: info | 1031 | check-info-dir: info |
| 1030 | cd info ; \ | 1032 | cd info ; \ |
| 1031 | missing= ; \ | 1033 | missing= ; \ |
| 1032 | for file in *; do \ | 1034 | for file in *; do \ |
| 1033 | test -f "$${file}" || continue ; \ | 1035 | test -f "$${file}" || continue ; \ |
| 1034 | case $${file} in \ | 1036 | case $${file} in \ |
| 1035 | *-[0-9]*|COPYING|dir) continue ;; \ | 1037 | *-[0-9]*|COPYING|dir|efaq-w32*) continue ;; \ |
| 1036 | esac ; \ | 1038 | esac ; \ |
| 1037 | file=`echo $${file} | sed 's/\.info//'` ; \ | 1039 | file=`echo $${file} | sed 's/\.info//'` ; \ |
| 1038 | grep -q -F ": ($${file})." dir || missing="$${missing} $${file}" ; \ | 1040 | grep -q -F ": ($${file})." dir || missing="$${missing} $${file}" ; \ |