mirror of https://github.com/mpv-player/mpv
update config.mak to match ffmpeg's version (fix alpha compilation)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17701 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
941b080f9c
commit
6889ea11a1
|
@ -19,7 +19,7 @@ ifeq ($(TARGET_ARCH_SPARC64),yes)
|
|||
CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
|
||||
endif
|
||||
|
||||
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
|
||||
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
|
||||
OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
|
||||
STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
|
||||
SHARED_OBJS := $(OBJS) $(SHARED_OBJS)
|
||||
|
@ -71,6 +71,7 @@ install: install-libs install-headers
|
|||
install-libs: $(INSTLIBTARGETS)
|
||||
|
||||
install-lib-shared: $(SLIBNAME)
|
||||
install -d "$(libdir)"
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
|
||||
else
|
||||
|
@ -83,9 +84,12 @@ else
|
|||
endif
|
||||
|
||||
install-lib-static: $(LIB)
|
||||
install -d "$(libdir)"
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
install -d "$(incdir)"
|
||||
install -d "$(libdir)/pkgconfig"
|
||||
install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(incdir)"
|
||||
install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(libdir)/pkgconfig"
|
||||
|
||||
|
|
Loading…
Reference in New Issue