Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 1 | # Rules to convert a .h file to inline RST documentation |
Mauro Carvalho Chehab | 15a04d4 | 2016-11-14 14:32:32 -0200 | [diff] [blame] | 2 | |
Mauro Carvalho Chehab | 8fa1bb5 | 2017-03-09 15:14:52 -0300 | [diff] [blame] | 3 | SRC_DIR=$(srctree)/Documentation/media |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 4 | PARSER = $(srctree)/Documentation/sphinx/parse-headers.pl |
| 5 | UAPI = $(srctree)/include/uapi/linux |
| 6 | KAPI = $(srctree)/include/linux |
Mauro Carvalho Chehab | 15a04d4 | 2016-11-14 14:32:32 -0200 | [diff] [blame] | 7 | |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 8 | FILES = audio.h.rst ca.h.rst dmx.h.rst frontend.h.rst net.h.rst video.h.rst \ |
| 9 | videodev2.h.rst media.h.rst cec.h.rst lirc.h.rst |
Mauro Carvalho Chehab | 60c2820 | 2016-07-08 11:40:06 -0300 | [diff] [blame] | 10 | |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 11 | TARGETS := $(addprefix $(BUILDDIR)/, $(FILES)) |
Mauro Carvalho Chehab | 60c2820 | 2016-07-08 11:40:06 -0300 | [diff] [blame] | 12 | |
| 13 | gen_rst = \ |
| 14 | echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \ |
| 15 | ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions |
| 16 | |
| 17 | quiet_gen_rst = echo ' PARSE $(patsubst $(srctree)/%,%,$<)'; \ |
| 18 | ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions |
| 19 | |
| 20 | silent_gen_rst = ${gen_rst} |
| 21 | |
| 22 | $(BUILDDIR)/audio.h.rst: ${UAPI}/dvb/audio.h ${PARSER} $(SRC_DIR)/audio.h.rst.exceptions |
| 23 | @$($(quiet)gen_rst) |
| 24 | |
| 25 | $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions |
| 26 | @$($(quiet)gen_rst) |
| 27 | |
| 28 | $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions |
| 29 | @$($(quiet)gen_rst) |
| 30 | |
| 31 | $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions |
| 32 | @$($(quiet)gen_rst) |
| 33 | |
| 34 | $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions |
| 35 | @$($(quiet)gen_rst) |
| 36 | |
| 37 | $(BUILDDIR)/video.h.rst: ${UAPI}/dvb/video.h ${PARSER} $(SRC_DIR)/video.h.rst.exceptions |
| 38 | @$($(quiet)gen_rst) |
| 39 | |
| 40 | $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions |
| 41 | @$($(quiet)gen_rst) |
| 42 | |
Mauro Carvalho Chehab | d2c6815 | 2016-07-09 08:54:35 -0300 | [diff] [blame] | 43 | $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions |
| 44 | @$($(quiet)gen_rst) |
| 45 | |
Hans Verkuil | 0dbaceb | 2016-11-02 08:25:28 -0200 | [diff] [blame] | 46 | $(BUILDDIR)/cec.h.rst: ${UAPI}/cec.h ${PARSER} $(SRC_DIR)/cec.h.rst.exceptions |
Mauro Carvalho Chehab | 96f69e0 | 2016-07-09 10:25:05 -0300 | [diff] [blame] | 47 | @$($(quiet)gen_rst) |
| 48 | |
Mauro Carvalho Chehab | 68cd5e0 | 2016-07-10 07:18:52 -0300 | [diff] [blame] | 49 | $(BUILDDIR)/lirc.h.rst: ${UAPI}/lirc.h ${PARSER} $(SRC_DIR)/lirc.h.rst.exceptions |
| 50 | @$($(quiet)gen_rst) |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 51 | |
| 52 | # Media build rules |
| 53 | |
| 54 | .PHONY: all html epub xml latex |
| 55 | |
| 56 | all: $(IMGDOT) $(BUILDDIR) ${TARGETS} |
| 57 | html: all |
| 58 | epub: all |
| 59 | xml: all |
| 60 | latex: $(IMGPDF) all |
Rémy Léone | 62924fd | 2017-02-15 13:16:35 +0100 | [diff] [blame] | 61 | linkcheck: |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 62 | |
| 63 | clean: |
Mauro Carvalho Chehab | 293fbd4 | 2016-11-30 08:00:19 -0200 | [diff] [blame] | 64 | -rm -f $(DOTTGT) $(IMGTGT) ${TARGETS} 2>/dev/null |
Mauro Carvalho Chehab | bf5bfe8 | 2016-11-30 08:00:18 -0200 | [diff] [blame] | 65 | |
| 66 | $(BUILDDIR): |
| 67 | $(Q)mkdir -p $@ |