mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 05:42:19 +00:00
60b39e2786
between common, MPlayer-specific and MEncoder-specific parts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22546 b3059339-0415-0410-9bf9-f77b7e298cf2
31 lines
572 B
Makefile
31 lines
572 B
Makefile
|
|
include ../config.mak
|
|
|
|
LIBNAME_COMMON = libosd.a
|
|
LIBNAME_MPLAYER = libvo.a
|
|
|
|
SRCS_MPLAYER = aspect.c \
|
|
geometry.c \
|
|
spuenc.c \
|
|
video_out.c \
|
|
vo_mpegpes.c \
|
|
vo_null.c \
|
|
vo_yuv4mpeg.c \
|
|
$(VO_SRCS) \
|
|
|
|
SRCS_MPLAYER-$(EXTERNAL_VIDIX) += vosub_vidix.c
|
|
SRCS_MPLAYER-$(VIDIX) += vosub_vidix.c
|
|
|
|
SRCS_COMMON = aclib.c \
|
|
osd.c \
|
|
sub.c \
|
|
|
|
SRCS_COMMON-$(BITMAP_FONT) += font_load.c
|
|
SRCS_COMMON-$(FREETYPE) += font_load_ft.c
|
|
|
|
CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil
|
|
|
|
CFLAGS = -I../osdep
|
|
|
|
include ../mpcommon.mak
|