Commit 7267b4a2 authored by mru's avatar mru

clean up DEP_LIBS setting


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12681 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0f11db79
......@@ -24,11 +24,14 @@ ALLPROGS = $(addsuffix $(EXESUF), $(BASENAMES))
ALLPROGS_G = $(addsuffix _g$(EXESUF), $(BASENAMES))
ALLMANPAGES = $(addsuffix .1, $(BASENAMES))
ifeq ($(BUILD_SHARED),yes)
DEP_LIBS = libavdevice/$(SLIBPREF)avdevice$(SLIBSUF) libavformat/$(SLIBPREF)avformat$(SLIBSUF) libavcodec/$(SLIBPREF)avcodec$(SLIBSUF) libavutil/$(SLIBPREF)avutil$(SLIBSUF)
else
DEP_LIBS = libavdevice/$(LIBPREF)avdevice$(LIBSUF) libavformat/$(LIBPREF)avformat$(LIBSUF) libavcodec/$(LIBPREF)avcodec$(LIBSUF) libavutil/$(LIBPREF)avutil$(LIBSUF)
endif
LIBS-$(CONFIG_AVFILTER) += avfilter
LIBS-$(CONFIG_POSTPROC) += postproc
LIBS-$(CONFIG_SWSCALE) += swscale
LIBS := avcodec avdevice avformat avutil $(LIBS-yes)
S := $(BUILD_SHARED:yes=S)
DEP_LIBS := $(foreach L,$(LIBS),lib$(L)/$($(S)LIBPREF)$(L)$($(S)LIBSUF))
ALL_TARGETS-$(CONFIG_VHOOK) += videohook
ALL_TARGETS-$(BUILD_DOC) += documentation
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment