target all in Makefile should be first of all targets
This commit is contained in:
parent
b5eede90c6
commit
10d4942912
1 changed files with 7 additions and 7 deletions
14
Makefile
14
Makefile
|
@ -79,13 +79,6 @@ DOCBDOCS = ${DOCS:.text=.docbook}
|
||||||
|
|
||||||
DOC_ALL = ${HTMLDOCS} ${DBHTMLDOCS} ${TEXIDOCS} ${MANPDOCS} ${PDFDOCS}
|
DOC_ALL = ${HTMLDOCS} ${DBHTMLDOCS} ${TEXIDOCS} ${MANPDOCS} ${PDFDOCS}
|
||||||
|
|
||||||
html: ${HTMLDOCS}
|
|
||||||
htm: ${DBHTMLDOCS}
|
|
||||||
info: ${TEXIDOCS}
|
|
||||||
man: ${MANPDOCS}
|
|
||||||
pdf: ${PDFDOCS}
|
|
||||||
documentation: ${DOC_ALL}
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# End user targets
|
# End user targets
|
||||||
#
|
#
|
||||||
|
@ -97,6 +90,13 @@ all:
|
||||||
@echo "man: only generate manpage{s}"
|
@echo "man: only generate manpage{s}"
|
||||||
@echo "install: install ccollect to ${prefix}"
|
@echo "install: install ccollect to ${prefix}"
|
||||||
|
|
||||||
|
html: ${HTMLDOCS}
|
||||||
|
htm: ${DBHTMLDOCS}
|
||||||
|
info: ${TEXIDOCS}
|
||||||
|
man: ${MANPDOCS}
|
||||||
|
pdf: ${PDFDOCS}
|
||||||
|
documentation: ${DOC_ALL}
|
||||||
|
|
||||||
install: install-link install-manlink
|
install: install-link install-manlink
|
||||||
|
|
||||||
install-link: install-script
|
install-link: install-script
|
||||||
|
|
Loading…
Reference in a new issue