mirror of https://git.ffmpeg.org/ffmpeg.git
Make vhook build non-recursive.
Originally committed as revision 9544 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
34174abf64
commit
ed5614eb56
36
Makefile
36
Makefile
|
@ -34,6 +34,19 @@ ifeq ($(CONFIG_VHOOK),yes)
|
|||
all: videohook
|
||||
install: install-vhook
|
||||
endif
|
||||
HOOKS = vhook/null$(SLIBSUF) vhook/fish$(SLIBSUF) vhook/ppm$(SLIBSUF) vhook/watermark$(SLIBSUF)
|
||||
ALLHOOKS = $(HOOKS) vhook/imlib2$(SLIBSUF) vhook/drawtext$(SLIBSUF)
|
||||
ALLHOOKS_SRCS := $(ALLHOOKS:$(SLIBSUF)=.c)
|
||||
ifeq ($(HAVE_IMLIB2),yes)
|
||||
HOOKS += vhook/imlib2$(SLIBSUF)
|
||||
CFLAGS += `imlib2-config --cflags`
|
||||
LIBS_imlib2$(SLIBSUF) = `imlib2-config --libs`
|
||||
endif
|
||||
ifeq ($(HAVE_FREETYPE2),yes)
|
||||
HOOKS += vhook/drawtext$(SLIBSUF)
|
||||
CFLAGS += `freetype-config --cflags`
|
||||
LIBS_drawtext$(SLIBSUF) = `freetype-config --libs`
|
||||
endif
|
||||
|
||||
ifeq ($(BUILD_DOC),yes)
|
||||
all: documentation
|
||||
|
@ -99,8 +112,11 @@ ffmpeg.o ffplay.o ffserver.o: version.h
|
|||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
videohook: .libs
|
||||
$(MAKE) -C vhook all
|
||||
videohook: .libs $(HOOKS)
|
||||
|
||||
vhook/%$(SLIBSUF): vhook/%.o
|
||||
$(CC) $(LDFLAGS) -o $@ $(VHOOKSHFLAGS) $< $(VHOOKLIBS) $(LIBS_$@)
|
||||
|
||||
|
||||
documentation: $(addprefix doc/, ffmpeg-doc.html faq.html ffserver-doc.html \
|
||||
ffplay-doc.html hooks.html $(ALLMANPAGES))
|
||||
|
@ -133,8 +149,9 @@ install-man:
|
|||
install -d "$(mandir)/man1"
|
||||
install -m 644 $(MANPAGES) "$(mandir)/man1"
|
||||
|
||||
install-vhook:
|
||||
$(MAKE) -C vhook install
|
||||
install-vhook: videohook
|
||||
install -d "$(shlibdir)/vhook"
|
||||
install -m 755 $(HOOKS) "$(shlibdir)/vhook"
|
||||
|
||||
install-libs:
|
||||
$(MAKE) -C libavutil install-libs
|
||||
|
@ -169,7 +186,8 @@ uninstall-man:
|
|||
rm -f $(addprefix $(mandir)/man1/,$(ALLMANPAGES))
|
||||
|
||||
uninstall-vhook:
|
||||
$(MAKE) -C vhook uninstall
|
||||
rm -f $(addprefix $(shlibdir)/vhook/,$(ALLHOOKS))
|
||||
-rmdir "$(shlibdir)/vhook/"
|
||||
|
||||
uninstall-libs:
|
||||
$(MAKE) -C libavutil uninstall-libs
|
||||
|
@ -194,12 +212,11 @@ endif
|
|||
ifeq ($(CONFIG_SWSCALER),yes)
|
||||
$(MAKE) -C libswscale depend
|
||||
endif
|
||||
ifeq ($(CONFIG_VHOOK),yes)
|
||||
$(MAKE) -C vhook depend
|
||||
endif
|
||||
|
||||
.depend: $(SRCS) version.h
|
||||
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(filter-out %.h,$^) 1>.depend
|
||||
for file in $(ALLHOOKS_SRCS); do \
|
||||
$(CC) $(CFLAGS) -MM -MT $(SRC_PATH)/$$file $(SRC_PATH)/$$file >> .depend ; done
|
||||
|
||||
$(DEP_LIBS): lib
|
||||
|
||||
|
@ -212,12 +229,12 @@ clean:
|
|||
$(MAKE) -C libavformat clean
|
||||
$(MAKE) -C libpostproc clean
|
||||
$(MAKE) -C libswscale clean
|
||||
$(MAKE) -C vhook clean
|
||||
rm -f *.o *~ .libs gmon.out TAGS $(ALLPROGS) $(ALLPROGS_G) \
|
||||
output_example$(EXESUF) qt-faststart$(EXESUF) cws2fws$(EXESUF)
|
||||
rm -f doc/*.html doc/*.pod doc/*.1
|
||||
rm -rf tests/vsynth1 tests/vsynth2 tests/data tests/asynth1.sw tests/*~
|
||||
rm -f $(addprefix tests/,$(addsuffix $(EXESUF),audiogen videogen rotozoom seek_test tiny_psnr))
|
||||
rm -f vhook/*.o vhook/*~ vhook/*.so vhook/*.dylib vhook/*.dll
|
||||
|
||||
distclean: clean
|
||||
$(MAKE) -C libavutil distclean
|
||||
|
@ -225,7 +242,6 @@ distclean: clean
|
|||
$(MAKE) -C libavformat distclean
|
||||
$(MAKE) -C libpostproc distclean
|
||||
$(MAKE) -C libswscale distclean
|
||||
$(MAKE) -C vhook distclean
|
||||
rm -f .depend version.h config.* *.pc
|
||||
|
||||
TAGS:
|
||||
|
|
|
@ -2015,7 +2015,6 @@ if enabled source_path_used; then
|
|||
libpostproc/Makefile \
|
||||
libavutil/Makefile \
|
||||
libswscale/Makefile \
|
||||
vhook/Makefile \
|
||||
doc/texi2pod.pl \
|
||||
"
|
||||
for dir in $DIRS ; do
|
||||
|
|
|
@ -1,54 +0,0 @@
|
|||
include ../config.mak
|
||||
|
||||
VPATH=$(SRC_PATH_BARE)/vhook
|
||||
|
||||
CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \
|
||||
-I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H
|
||||
LDFLAGS+= -g
|
||||
|
||||
HOOKS=null$(SLIBSUF) fish$(SLIBSUF) watermark$(SLIBSUF)
|
||||
ALLHOOKS=$(HOOKS) ppm$(SLIBSUF) imlib2$(SLIBSUF) drawtext$(SLIBSUF)
|
||||
|
||||
ifeq ($(HAVE_FORK),yes)
|
||||
HOOKS += ppm$(SLIBSUF)
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_IMLIB2),yes)
|
||||
HOOKS += imlib2$(SLIBSUF)
|
||||
CFLAGS += `imlib2-config --cflags`
|
||||
LIBS_imlib2$(SLIBSUF) = `imlib2-config --libs`
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_FREETYPE2),yes)
|
||||
HOOKS += drawtext$(SLIBSUF)
|
||||
CFLAGS += `freetype-config --cflags`
|
||||
LIBS_drawtext$(SLIBSUF) = `freetype-config --libs`
|
||||
endif
|
||||
|
||||
SRCS := $(HOOKS:$(SLIBSUF)=.c)
|
||||
|
||||
all: $(HOOKS)
|
||||
|
||||
depend dep: $(SRCS)
|
||||
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
||||
|
||||
install: $(HOOKS)
|
||||
install -d "$(shlibdir)/vhook"
|
||||
install -m 755 $(HOOKS) "$(shlibdir)/vhook"
|
||||
|
||||
uninstall:
|
||||
rm -f $(addprefix $(shlibdir)/vhook/,$(ALLHOOKS))
|
||||
-rmdir "$(shlibdir)/vhook/"
|
||||
|
||||
%$(SLIBSUF): %.o
|
||||
$(CC) $(LDFLAGS) -o $@ $(VHOOKSHFLAGS) $< $(VHOOKLIBS) $(LIBS_$@)
|
||||
|
||||
clean:
|
||||
rm -f *.o *~ *.a *.lib *.so *.dylib *.dll
|
||||
|
||||
distclean: clean
|
||||
rm -f .depend
|
||||
|
||||
.PHONY: all depend dep clean distclean install* uninstall*
|
||||
|
||||
-include .depend
|
Loading…
Reference in New Issue