1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-30 11:42:04 +00:00

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

View File

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