Files
lcdproc/docs/lcdproc-user/Makefile.am
T
mmdolze 8bdfdaaaa1 - Convert function comments to Doxygen.
- Remove instructions that have been transfered to the User's Guide.
- Remove the unused line drawing function.
- Pass through indent.
- Add more comments to the initialization code.
- In the user guide remove table with wiring scheme by LCD pin but add a new
  one for bitshaker wiring.
2011-01-15 19:32:01 +00:00

33 lines
762 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