1
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:33:46 +01:00

Small fix for non-X86 OpenBSD by Björn Sandell <biorn at dce.chalmers.se>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6629 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-07-03 18:59:47 +00:00
parent 18a3939822
commit 8b1b3710a6

View File

@ -17,8 +17,10 @@ OBJS=$(SRCS:.c=.o)
CFLAGS = $(OPTFLAGS) -fPIC -I. -I.. -Wall -W
LIBS =
ifeq ($(TARGET_OS),OpenBSD)
ifeq ($(TARGET_ARCH_X86),yes)
LIBS += -li386
endif
endif
.SUFFIXES: .c .o