File: Makefile.am

package info (click to toggle)
meanwhile 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: ansic: 13,942; makefile: 102; sh: 45
file content (30 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (6)
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

noinst_DATA = Doxyfile


if ENABLE_DOXYGEN

htmldoc_DATA = html/*
htmldocdir = $(datadir)/doc/@PACKAGE@-doc-@VERSION@/html

latexdoc_DATA = latex/*
latexdocdir = $(datadir)/doc/@PACKAGE@-doc-@VERSION@/latex

docdata = $(htmldoc_DATA) $(latexdoc_DATA)

$(docdata): doxygen

else

install:

endif


doxygen:
	@doxygen Doxyfile > /dev/null


clean-local:
	rm -rf html latex man