Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
737e2b96
Commit
737e2b96
authored
Feb 08, 2008
by
Glenn Morris
Browse files
(check-info-dir): New target.
parent
1888e568
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
ChangeLog
ChangeLog
+4
-0
Makefile.in
Makefile.in
+18
-0
No files found.
ChangeLog
View file @
737e2b96
2008-02-08 Glenn Morris <rgm@gnu.org>
* Makefile.in (check-info-dir): New target.
2008-02-08 Michael Olson <mwolson@gnu.org>
* Makefile.in (INFO_FILES): Add epa.
...
...
Makefile.in
View file @
737e2b96
...
...
@@ -779,6 +779,24 @@ info: force-info
-
(
cd
doc/misc
;
$(MAKE)
$(MFLAGS)
info
)
-
(
cd
doc/lispref
;
$(MAKE)
$(MFLAGS)
info
)
-
(
cd
doc/lispintro
;
$(MAKE)
$(MFLAGS)
info
)
# The info/dir file must be updated by hand when new manuals are added.
check-info-dir
:
info
cd
info
;
\
missing
=
;
\
for
file
in
*
;
do
\
test
-f
"
$
${file}
"
||
continue
;
\
case
$
${file}
in
\
*
-[0-9]
*
|
COPYING|dir
)
continue
;;
\
esac
;
\
grep
-q
-F
": (
$
${file}
)."
dir
||
missing
=
"
$
${missing}
$
${file}
"
;
\
done
;
\
if
test
-n
"
$
${missing}
"
;
then
\
echo
"Missing info/dir entries:
$
${missing}
"
;
\
exit
1
;
\
fi
;
\
echo
"info/dir is OK"
dvi
:
(
cd
doc/emacs
;
$(MAKE)
$(MFLAGS)
dvi
)
(
cd
doc/misc
;
$(MAKE)
$(MFLAGS)
dvi
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment