File: Makefile.am

package info (click to toggle)
libevdev 1.11.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,644 kB
  • sloc: ansic: 9,462; sh: 4,289; makefile: 208; python: 178; xml: 171; javascript: 53
file content (42 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (3)
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
man3_MANS = libevdev.man

if HAVE_DOXYGEN

noinst_DATA = html/index.html

header_files = \
	$(top_srcdir)/libevdev/libevdev.h \
	$(top_srcdir)/libevdev/libevdev-uinput.h

html/index.html: libevdev.doxygen style/libevdevdoxygen.css $(header_files)
	$(AM_V_GEN)$(DOXYGEN) $<

clean-local:
	$(AM_V_at)rm -rf html

doc_src= $(shell find html -type f -printf "html/%P\n" 2>/dev/null)
style_src = \
	style/bootstrap.css \
	style/customdoxygen.css \
	style/doxy-boot.js \
	style/dynsections.js \
	style/footer.html \
	style/header.html \
	style/layout.xml \
	style/libevdevdoxygen.css \
	style/LICENSE \
	style/README.md \
	style/style.css

EXTRA_DIST = html/index.html $(doc_src) $(style_src)

endif

# make sure doc was built before running dist
dist-hook:
	@test -f $(distdir)/html/index.html || (\
		echo "******************************************************" && \
		echo "Couldn't find documentation files, refusing make dist." && \
		echo "Install doxygen to build documentation for tarball." && \
		echo "******************************************************" && \
		test )