hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
HTML_DOCS = html/xeno3prm html/xeno3prm/search
PDF_DOCS  = xeno3prm.pdf
EXTRA_DIST = xeno3prm-common.conf.in xeno3prm-html.conf.in xeno3prm-latex.conf.in
 
if XENO_BUILD_DOC
 
HTML_DOCSDIR = ./
PDF_DOCSDIR = ./
 
all-local: html pdf
 
html/xeno3prm/search: html/xeno3prm
 
html: $(HTML_DOCS)
 
pdf: $(PDF_DOCS)
 
html/xeno3prm latex/xeno3prm: FORCE
   @mkdir -p $@
   $(DOXYGEN) $(@F)-$(@D).conf
 
%.pdf: latex/%
   $(MAKE) -C $< refman.pdf
   mv $</refman.pdf $@
 
distclean-local:
   for dir in *-html *-latex; do \
       if test -d $$dir ; then $(RM) -R $$dir ; fi ; \
   done
 
.PHONY: FORCE
 
.DELETE_ON_ERROR:
 
include $(top_srcdir)/doc/install.rules
 
install-data-local: install-docs-local
uninstall-local: uninstall-docs
 
else
install-data-local:
uninstall-local:
endif