* Makefile.def: Add html support.
* Makefile.tpl: Likewise. * Makefile.in: Regenerate.
This commit is contained in:
parent
2924732466
commit
6d389afcf7
4 changed files with 2289 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-11-12 Mike Stump <mrs@apple.com>
|
||||
|
||||
* Makefile.def: Add html support.
|
||||
* Makefile.tpl: Likewise.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2004-11-11 Geoffrey Keating <geoffk@apple.com>
|
||||
|
||||
PR 18423
|
||||
|
|
|
@ -143,6 +143,8 @@ recursive_targets = { make_target= info;
|
|||
depend=configure; };
|
||||
recursive_targets = { make_target= dvi;
|
||||
depend=configure; };
|
||||
recursive_targets = { make_target= html;
|
||||
depend=configure; };
|
||||
recursive_targets = { make_target= TAGS;
|
||||
depend=configure; };
|
||||
recursive_targets = { make_target= install-info;
|
||||
|
|
2280
Makefile.in
2280
Makefile.in
File diff suppressed because it is too large
Load diff
|
@ -642,12 +642,13 @@ do-[+make_target+]: unstage [+make_target+]-host [+make_target+]-target stage
|
|||
|
||||
# Here are the targets which correspond to the do-X targets.
|
||||
|
||||
.PHONY: info installcheck dvi install-info
|
||||
.PHONY: info installcheck dvi html install-info
|
||||
.PHONY: clean distclean mostlyclean maintainer-clean realclean
|
||||
.PHONY: local-clean local-distclean local-maintainer-clean
|
||||
info: do-info
|
||||
installcheck: do-installcheck
|
||||
dvi: do-dvi
|
||||
html: do-html
|
||||
|
||||
# Make sure makeinfo is built before we do a `make info', if we're
|
||||
# in fact building texinfo.
|
||||
|
|
Loading…
Reference in a new issue