Remove useless conditional.

Originally committed as revision 8139 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 18 years ago
parent 876e4194c2
commit 3cee76e6c9
  1. 2
      libavcodec/Makefile
  2. 2
      libavformat/Makefile
  3. 2
      libavutil/Makefile
  4. 2
      libpostproc/Makefile

@ -397,10 +397,8 @@ OBJS-$(TARGET_ARCH_BFIN) += bfin/dsputil_bfin.o \
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
NAME=avcodec
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVCVERSION)
LIBMAJOR=$(LAVCMAJOR)
endif
TESTS= imgresample-test fft-test
ifeq ($(TARGET_ARCH_X86),yes)

@ -171,9 +171,7 @@ endif
endif
NAME=avformat
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVFVERSION)
LIBMAJOR=$(LAVFMAJOR)
endif
include ../common.mak

@ -24,9 +24,7 @@ HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
random.h
NAME=avutil
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVUVERSION)
LIBMAJOR=$(LAVUMAJOR)
endif
include ../common.mak

@ -7,10 +7,8 @@ incdir=$(prefix)/include/postproc
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
NAME=postproc
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SPPVERSION)
LIBMAJOR=$(SPPMAJOR)
endif
STATIC_OBJS=postprocess.o
SHARED_OBJS=postprocess_pic.o

Loading…
Cancel
Save