define rule for man section 5

This commit is contained in:
Laurent Vivier 2008-07-23 18:44:08 +00:00
parent e05ef43e51
commit c6acbdb73f

View File

@ -134,6 +134,9 @@ if type docbook-to-man > /dev/null 2>&1
then
cat <<!EOF
%.5: %.sgml
docbook-to-man \$< > \$@
%.8: %.sgml
docbook-to-man \$< > \$@
!EOF
@ -142,11 +145,17 @@ if type docbook2man > /dev/null 2>&1
then
cat <<!EOF
%.5: %.sgml
docbook2man \$<
%.8: %.sgml
docbook2man \$<
!EOF
else
%.5: %.sgml
echo "Missing tools to generate \$@ from \$<"
%.8: %.sgml
echo "Missing tools to generate \$@ from \$<"
fi