diff options
Diffstat (limited to 'Documentation/Makefile.in')
-rw-r--r-- | Documentation/Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in index 2d07cfd..81f2298 100644 --- a/Documentation/Makefile.in +++ b/Documentation/Makefile.in | |||
@@ -3,7 +3,9 @@ | |||
3 | # Modify these top variables. | 3 | # Modify these top variables. |
4 | SUBDIRS = | 4 | SUBDIRS = |
5 | 5 | ||
6 | EXTRA_DIST = README documentation.lyx | 6 | EXTRA_DIST = README \ |
7 | manual.xml \ | ||
8 | manual.html | ||
7 | 9 | ||
8 | #Don't modify anything below here | 10 | #Don't modify anything below here |
9 | 11 | ||
@@ -16,6 +18,12 @@ DISTFILES = $(STD_DIST) $(EXTRA_DIST) | |||
16 | 18 | ||
17 | all: all-subdirs | 19 | all: all-subdirs |
18 | 20 | ||
21 | %.html: %.xml | ||
22 | @xmlto html-nochunks $< | ||
23 | |||
24 | %.pdf: %.xml | ||
25 | @xmlto pdf $< | ||
26 | |||
19 | all-subdirs install-subdirs update-subdirs clean-subdirs distclean-subdirs: | 27 | all-subdirs install-subdirs update-subdirs clean-subdirs distclean-subdirs: |
20 | @otarget=`echo $@|sed s/-subdirs//`; \ | 28 | @otarget=`echo $@|sed s/-subdirs//`; \ |
21 | list=' $(SUBDIRS)'; \ | 29 | list=' $(SUBDIRS)'; \ |