Files
lcdproc/docs/lcdproc-user/Makefile.am
T
marschap 24a8996795 add convenience targets to Makefiles; require autmake 1.9;
install HTML versin of user guide in Debian
2006-09-14 09:48:40 +00:00

27 lines
582 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 \
running.docbook \
README.docbook
## convenience targets
xmlto = /usr/bin/xmlto
userguidedir = $(DESTDIR)$(htmldir)/user-guide/
install-html-userguide: $(xmlto) lcdproc-user.docbook
$(mkinstalldirs) $(userguidedir)
$(xmlto) html -o $(userguidedir) lcdproc-user.docbook
## EOF