summaryrefslogtreecommitdiff
path: root/doc/doxygen/Makefile.am
blob: de3b31f5043a5af6dc3b7e6785b468a71f2b777c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

noinst_DATA = xml/client/index.xml xml/server/index.xml
dist_noinst_DATA = wayland.doxygen.in

scanned_src_files_shared = 				\
	$(top_srcdir)/src/wayland-util.c	\
	$(top_srcdir)/src/wayland-util.h

scanned_src_files_client = 				\
	$(scanned_src_files_shared)			\
	$(top_srcdir)/src/wayland-client.c	\
	$(top_srcdir)/src/wayland-client.h

scanned_src_files_server = 				\
	$(scanned_src_files_shared)			\
	$(top_srcdir)/src/wayland-server.c	\
	$(top_srcdir)/src/wayland-server.h	\
	$(top_srcdir)/src/wayland-shm.c

# find all man/man3/wl_foo.3 pages
# for this to work, we need to create them before the man target (hence
# all-local below)
dist_man3_MANS= $(shell find man/man3/ -name "wl_*.3" -printf "man/man3/%P\n")

xml/client/index.xml: $(scanned_src_files_client) wayland.doxygen
	$(AM_V_GEN)$(MKDIR_P) xml/client && \
	(cat wayland.doxygen; \
          echo "GENERATE_XML=YES"; \
          echo "XML_OUTPUT=xml/client"; \
          echo "INPUT= $(scanned_src_files_client)"; \
          ) | doxygen -
xml/server/index.xml: $(scanned_src_files_server) wayland.doxygen
	$(AM_V_GEN)$(MKDIR_P) xml/server && \
	(cat wayland.doxygen; \
          echo "GENERATE_XML=YES"; \
          echo "XML_OUTPUT=xml/server"; \
          echo "INPUT= $(scanned_src_files_server)"; \
          ) | doxygen -

man/man3/wl_display.3: $(scanned_src_files_client) $(scanned_src_files_server)
	$(AM_V_GEN)(cat wayland.doxygen; \
          echo "GENERATE_MAN=YES"; \
          echo "MAN_OUTPUT=man"; \
          echo "JAVADOC_AUTOBRIEF=NO"; \
          echo "INPUT= $^"; \
          ) | doxygen -

# there is no man-local
all-local: man/man3/wl_display.3

clean-local:
	rm -rf xml/
	rm -rf man/