Rename LIBS variable to more standard name EXTRALIBS.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22597 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-03-15 08:49:56 +00:00
parent b53a39af47
commit caf8e251cd
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ CFLAGS = -fPIC -I. -I.. $(OPTFLAGS)
ifeq ($(TARGET_OS),OpenBSD)
ifeq ($(TARGET_ARCH_X86),yes)
LIBS += -li386
EXTRALIBS += -li386
endif
endif
@ -45,7 +45,7 @@ $(LIBNAME): $(OBJS_MPLAYER)
ifeq ($(TARGET_WIN32),yes)
$(AR) r $@ $^
else
$(CC) -shared -Wl,-soname -Wl,$@ -o $@ $^ $(LIBS)
$(CC) -shared -Wl,-soname -Wl,$@ -o $@ $^ $(EXTRALIBS)
ln -sf $@ $(SHORTNAME)
ln -sf $@ $(VSHORTNAME)
endif