mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2026-01-01 17:30:11 +01:00
For the scenarios the module supports it is not required to be specified. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
27 lines
770 B
Makefile
27 lines
770 B
Makefile
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 $(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)
|
|
EXTRA_DIST = html/index.html $(doc_src) libevdev.css
|
|
|
|
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 )
|