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

Move library name generation to configure, simplifies build system a bit more.

Originally committed as revision 4856 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2006-01-14 15:54:58 +00:00
parent 1c7a8c17ff
commit 4bdd05e76f
5 changed files with 8 additions and 12 deletions

View File

@@ -20,12 +20,10 @@ endif
SRCS := $(OBJS:.o=.c)
LIB= $(LIBPREF)avutil$(LIBSUF)
NAME=avutil
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVUVERSION)
LIBMAJOR=$(LAVUMAJOR)
NAME=avutil
SLIBNAME= $(SLIBPREF)avutil$(SLIBSUF)
endif
all: $(LIB) $(SLIBNAME)