1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-19 05:15:12 +00:00
mpv/libvo/Makefile
diego 27d308ae44 Remove -I CFLAGS hack, -I../libavcodec is no longer in CFLAGS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26372 b3059339-0415-0410-9bf9-f77b7e298cf2
2008-04-09 17:14:43 +00:00

28 lines
575 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-$(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
include ../mpcommon.mak
%.o: %.m
$(CC) $(CFLAGS) -c -o $@ $<