1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

autobuild doc if possible patch by (Nicolas Boos <nicolas.boos at wanadoo dot fr>)

Originally committed as revision 3288 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Nicolas Boos
2004-07-05 18:06:16 +00:00
committed by Michael Niedermayer
parent 4994af2fbd
commit 146ea95228
2 changed files with 19 additions and 1 deletions

View File

@@ -70,11 +70,15 @@ else
TEST=test
endif
ifeq ($(BUILD_DOC),yes)
DOC=documentation
endif
OBJS = ffmpeg.o ffserver.o cmdutils.o ffplay.o
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
FFLIBS = -L./libavformat -lavformat -L./libavcodec -lavcodec
all: lib $(PROG) $(PROGTEST) $(VHOOK) $(QTFASTSTART)
all: lib $(PROG) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC)
lib:
$(MAKE) -C libavcodec all
@@ -112,6 +116,9 @@ ffplay.o: ffplay.c
videohook: .libs
$(MAKE) -C vhook all
documentation:
$(MAKE) -C doc all
.PHONY: install
install: all install-man $(INSTALLVHOOK)