mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-24 22:50:05 +01:00
Doxygen is bad for man pages, but having an online API documentation is better and easier to maintain. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
16 lines
259 B
Makefile
16 lines
259 B
Makefile
if HAVE_DOXYGEN
|
|
all-local: doxygen
|
|
|
|
doxygen: libevdev.doxygen
|
|
doxygen $<
|
|
|
|
clean-local:
|
|
rm -rf html
|
|
|
|
.PHONY: doxygen
|
|
|
|
doc_src= $(shell find . -name "html" -printf "%P\n")
|
|
EXTRA_DIST = $(doc_src) libevdev.doxygen
|
|
endif
|
|
|
|
dist_noinst_DATA = libevdev.doxygen.in
|