mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-14 18:36:34 +00:00
13 lines
310 B
Makefile
13 lines
310 B
Makefile
|
|
# Generate the *.h.rst files from uAPI headers
|
||
|
|
|
||
|
|
PARSER = ../sphinx/parse-headers.pl
|
||
|
|
UAPI = ../../include/uapi/linux
|
||
|
|
|
||
|
|
htmldocs: frontend.h.rst
|
||
|
|
|
||
|
|
frontend.h.rst: ${PARSER} ${UAPI}/dvb/frontend.h frontend.h.rst.exceptions
|
||
|
|
${PARSER} ${UAPI}/dvb/frontend.h $@ frontend.h.rst.exceptions
|
||
|
|
|
||
|
|
clean:
|
||
|
|
-rm frontend.h.rst
|