comparison libpostproc/Makefile @ 147:598fdb31f213 libavcodec

Move yuv2rgb to postprocess
author nick
date Tue, 06 Nov 2001 11:20:00 +0000
parents 7fc045e7a924
children 660233346f4f
comparison
equal deleted inserted replaced
146:a4bd42a5d075 147:598fdb31f213
1 1
2 include ../config.mak 2 include ../config.mak
3 3
4 LIBNAME = libpostproc.a 4 LIBNAME = libpostproc.a
5 5
6 SRCS=postprocess.c swscale.c rgb2rgb.c 6 SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
7 OBJS=$(SRCS:.c=.o) 7 OBJS=$(SRCS:.c=.o)
8 8
9 CFLAGS = $(OPTFLAGS) -I. -I.. -Wall 9 ifeq ($(TARGET_ARCH_X86),yes)
10 SRCS += yuv2rgb_mmx.c
11 endif
12
13 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall
10 # -I/usr/X11R6/include/ 14 # -I/usr/X11R6/include/
11 15
12 .SUFFIXES: .c .o 16 .SUFFIXES: .c .o
13 17
14 # .PHONY: all clean 18 # .PHONY: all clean