Files
lcdproc/docs/lcdproc-user/Makefile.am
T
mmdolze 18f0977605 Add a little bit of color to the User Guide by supplying a CSS stylesheet,
which adds colored borders to notes and screen contents.
2010-11-28 22:15:30 +00:00

33 lines
761 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.css \
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 lcdproc-user.css
$(mkinstalldirs) $(userguidedir)
$(xmlto) html -o $(userguidedir) \
--stringparam html.stylesheet=lcdproc-user.css lcdproc-user.docbook
cp lcdproc-user.css $(userguidedir)
## EOF