You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
331 B
14 lines
331 B
KDE_DOCS = kkbswitch
|
|
KDE_LANG = en
|
|
|
|
.PHONY: html
|
|
|
|
html: HTML/index.html
|
|
|
|
HTML/index.html: $(srcdir)/index.docbook
|
|
rm -fr HTML
|
|
mkdir HTML
|
|
(cd HTML && meinproc --check --stylesheet $(KDE_XSL_STYLESHEET) ../$(srcdir)/index.docbook && ln -s /usr/share/doc/HTML/en/common; \
|
|
for name in ../$(srcdir)/*.png; do ln -s $$name; done)
|
|
|