Mercurial > mplayer.hg
comparison libvo/Makefile @ 2732:ae79207a3055
Move yuv2rgb to postprocess
author | nick |
---|---|
date | Tue, 06 Nov 2001 11:22:40 +0000 |
parents | a44484066941 |
children | 107d9e9e5bd1 |
comparison
equal
deleted
inserted
replaced
2731:214f79969a80 | 2732:ae79207a3055 |
---|---|
1 | 1 |
2 include config.mak | 2 include config.mak |
3 | 3 |
4 LIBNAME = libvo.a | 4 LIBNAME = libvo.a |
5 | 5 |
6 SRCS=aspect.c aclib.c osd.c font_load.c yuv2rgb.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c | 6 SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c |
7 OBJS=$(SRCS:.c=.o) | 7 OBJS=$(SRCS:.c=.o) |
8 | 8 |
9 ifeq ($(TARGET_ARCH_X86),yes) | 9 ifeq ($(TARGET_ARCH_X86),yes) |
10 SRCS += yuv2rgb_mmx.c | |
11 ifeq ($(TARGET_OS),Linux) | 10 ifeq ($(TARGET_OS),Linux) |
12 SRCS += vo_vesa.c | 11 SRCS += vo_vesa.c |
13 endif | 12 endif |
14 endif | 13 endif |
15 | 14 |
16 CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(MLIB_INC) $(DVB_INC) -DMPG12PLAY #-Wall | 15 CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall |
17 # -I/usr/X11R6/include/ | 16 # -I/usr/X11R6/include/ |
18 | 17 |
19 .SUFFIXES: .c .o | 18 .SUFFIXES: .c .o |
20 | 19 |
21 # .PHONY: all clean | 20 # .PHONY: all clean |