blob: 7ed5a5caaa07638a03967f3cc43316ca60d6187b (
plain)
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
|
include $(top_srcdir)/bootstrap.am
man_MANS = sciteco.1
EXTRA_DIST = sciteco.1.in
CLEANFILES = sciteco.1
man_MANS += sciteco.7
EXTRA_DIST += sciteco.7.template
CLEANFILES += sciteco.7 sciteco.7.in
SOURCES = $(wildcard @top_srcdir@/src/*.cpp)
EXTRA_DIST += generate-docs.tes
%.in : %.template generate-docs.tes $(SOURCES)
$(BOOTSTRAP_SCITECO) -m @srcdir@/generate-docs.tes \
$@ $< $(SOURCES)
#
# Doxygen processing (do not install or distribute)
#
if BUILD_DEVDOC
noinst_DATA = doxygen/
endif
.PHONY: doxygen/
doxygen/ : Doxyfile
@DOXYGEN@ $<
clean-local:
-rm -rf doxygen/
|