mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +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
|