Files
lcdproc/docs/lcdproc-user/Makefile.am
T
mmdolze f59af2e241 Replace <term><command><arg> with <term><property><parameter> to describe
options in the config file because:
 * <arg> can only be used within <cmdsynopsis>.
 * <cmdsynopsis> does not allow text outside <command> and <arg>.
 * <arg> does not allow decorating elements like <literal> or <emphasis>.
This fixes #2803057.

Add shortcut entities for commonly used parameters (yes/no, size).
Remove Debian patch which is obsoleted by above changes.
2009-06-12 09:12:50 +00:00

30 lines
633 B
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = drivers
EXTRA_DIST = bookinfo.docbook \
configuration.docbook \
contact.docbook \
drivers.docbook \
how-to-obtain.docbook \
installation.docbook \
introduction.docbook \
lcdproc-user.docbook \
license.docbook \
parameters.ent \
running.docbook \
README.docbook
## convenience targets
xmlto = /usr/bin/xmlto
userguidedir = $(DESTDIR)$(htmldir)/user-guide/
.PHONY: install-html-userguide
install-html-userguide: $(xmlto) lcdproc-user.docbook
$(mkinstalldirs) $(userguidedir)
$(xmlto) html -o $(userguidedir) lcdproc-user.docbook
## EOF