mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 12:36:41 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| MANPAGES    = $(PROGS-yes:%=doc/%.1)
 | |
| PODPAGES    = $(PROGS-yes:%=doc/%.pod)
 | |
| HTMLPAGES   = $(PROGS-yes:%=doc/%.html)                                 \
 | |
|               doc/developer.html                                        \
 | |
|               doc/faq.html                                              \
 | |
|               doc/fate.html                                             \
 | |
|               doc/general.html                                          \
 | |
|               doc/git-howto.html                                        \
 | |
|               doc/libavfilter.html                                      \
 | |
|               doc/platform.html                                         \
 | |
| 
 | |
| DOCS = $(HTMLPAGES) $(MANPAGES) $(PODPAGES)
 | |
| 
 | |
| all-$(CONFIG_DOC): documentation
 | |
| 
 | |
| documentation: $(DOCS)
 | |
| 
 | |
| TEXIDEP = awk '/^@include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
 | |
| 
 | |
| doc/%.html: TAG = HTML
 | |
| doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
 | |
| 	$(Q)$(TEXIDEP)
 | |
| 	$(M)texi2html -monolithic --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
 | |
| 
 | |
| doc/%.pod: TAG = POD
 | |
| doc/%.pod: doc/%.texi
 | |
| 	$(Q)$(TEXIDEP)
 | |
| 	$(M)$(SRC_PATH)/doc/texi2pod.pl $< $@
 | |
| 
 | |
| doc/%.1: TAG = MAN
 | |
| doc/%.1: doc/%.pod
 | |
| 	$(M)pod2man --section=1 --center=" " --release=" " $< > $@
 | |
| 
 | |
| $(DOCS): | doc
 | |
| OBJDIRS += doc
 | |
| 
 | |
| install-progs-$(CONFIG_DOC): install-man
 | |
| 
 | |
| install-man: $(MANPAGES)
 | |
| 	$(Q)mkdir -p "$(MANDIR)/man1"
 | |
| 	$(INSTALL) -m 644 $(MANPAGES) "$(MANDIR)/man1"
 | |
| 
 | |
| uninstall: uninstall-man
 | |
| 
 | |
| uninstall-man:
 | |
| 	$(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
 | |
| 
 | |
| clean::
 | |
| 	$(RM) doc/*.html doc/*.pod doc/*.1 $(CLEANSUFFIXES:%=doc/%)
 | |
| 
 | |
| -include $(wildcard $(DOCS:%=%.d))
 | |
| 
 | |
| .PHONY: documentation
 | 
