Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
90bfe65e
Commit
90bfe65e
authored
Nov 20, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: process protocol.xml with xmlto
Generate and install protocol.html if xmlto is available.
parent
a3d0e571
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
configure.ac
configure.ac
+16
-0
Makefile.am
doc/Makefile.am
+13
-1
No files found.
configure.ac
View file @
90bfe65e
...
...
@@ -853,6 +853,22 @@ AM_CONDITIONAL(HAVE_ZEROCONF, test x$with_zeroconf != xno)
dnl
dnl Documentation
dnl
AC_MSG_CHECKING([for xmlto (DocBook processing)])
AC_PATH_PROG(XMLTO, xmlto)
if test x$XMLTO != x; then
AC_SUBST(XMLTO)
AC_MSG_RESULT($XMLTO)
else
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(HAVE_XMLTO, test x$XMLTO != x)
dnl
dnl build options
dnl
...
...
doc/Makefile.am
View file @
90bfe65e
DOCBOOK_FILES
=
protocol.xml
DOCBOOK_HTML
=
$
(
patsubst %.xml,%.html,
$(DOCBOOK_FILES)
)
man_MANS
=
mpd.1 mpd.conf.5
doc_DATA
=
COMMANDS
mpdconf.example
doc_DATA
=
mpdconf.example
EXTRA_DIST
=
$(man_MANS)
$(doc_DATA)
MOSTLYCLEANFILES
=
$(DOCBOOK_HTML)
if
HAVE_XMLTO
doc_DATA
+=
$(DOCBOOK_HTML)
$(DOCBOOK_HTML)
:
%.html: %.xml
$(XMLTO)
html-nochunks
$<
endif
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