mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
doc: provide include path list for riot.doxyfile
This commit is contained in:
parent
cf608df0ed
commit
bce61166ee
@ -1,3 +1,10 @@
|
||||
RIOTBASE=$(shell git rev-parse --show-toplevel)
|
||||
# Generate list of quoted absolute include paths. Evaluated in riot.doxyfile.
|
||||
export STRIP_FROM_INC_PATH_LIST=$(shell \
|
||||
git ls-tree -dr --full-tree --name-only HEAD |\
|
||||
grep '/include$$' |\
|
||||
sed 's/.*/\"$(subst /,\/,${RIOTBASE})\/\0\"/')
|
||||
|
||||
.PHONY: doc
|
||||
doc: html
|
||||
|
||||
|
@ -161,7 +161,7 @@ STRIP_FROM_PATH =
|
||||
# specify the list of include paths that are normally passed to the compiler
|
||||
# using the -I flag.
|
||||
|
||||
STRIP_FROM_INC_PATH =
|
||||
STRIP_FROM_INC_PATH = $(STRIP_FROM_INC_PATH_LIST) # Exported from Makefile.
|
||||
|
||||
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
|
||||
# less readable) file names. This can be useful is your file systems doesn't
|
||||
|
Loading…
Reference in New Issue
Block a user