]> git.sesse.net Git - ffmpeg/blobdiff - postproc/Makefile
use av_d2q to parse frame rate
[ffmpeg] / postproc / Makefile
index deb1e9a263f08d2ca6302b38b2a8e346738f901f..475bd313818dd51b79f4e0ab7b778e696dc8c7d6 100644 (file)
@@ -4,8 +4,12 @@ include ../config.mak
 SWSLIB = libswscale.a
 
 SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c
+
 SWSOBJS=$(SWSSRCS:.c=.o)
-CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o ../libvo/aclib.o
+
+ifeq ($(TARGET_ALTIVEC),yes)
+SWSOBJS +=  yuv2rgb_altivec.o
+endif
 
 CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
 # -I/usr/X11R6/include/
@@ -21,26 +25,28 @@ all:    $(SWSLIB)
 
 $(SWSLIB):     $(SWSOBJS)
        $(AR) r $(SWSLIB) $(SWSOBJS)
+       $(RANLIB) $(SWSLIB)
 
 clean:
-       rm -f *.o *.a *~ *.so
+       rm -f *.o *.a *~ *.so cs_test swscale-example
 
-distclean:
-       rm -f Makefile.bak *.o *.a *~ *.so .depend
+distclean: clean
+       rm -f .depend
 
 dep:    depend
 
 depend:
        $(CC) -MM $(CFLAGS) $(SWSSRCS) 1>.depend
 
-cs_test: $(CS_TEST_OBJS)
-       $(CC) $(CS_TEST_OBJS) -o cs_test
+cs_test: cs_test.o $(SWSLIB)
+       $(CC) cs_test.o $(SWSLIB) ../cpudetect.o -DFOR_MENCODER ../mp_msg.c -o cs_test -W -Wall
 
 swscale-example: swscale-example.o $(SWSLIB)
-       $(CC) swscale-example.o $(SWSLIB) ../cpudetect.o  ../libmpcodecs/img_format.o -lm -o swscale-example -W -Wall
+       $(CC) swscale-example.o $(SWSLIB) ../libmpcodecs/img_format.o -lm -o swscale-example -W -Wall
 #
 # include dependency files if they exist
 #
 ifneq ($(wildcard .depend),)
 include .depend
 endif
+