]> git.sesse.net Git - ffmpeg/blobdiff - postproc/Makefile
use av_d2q to parse frame rate
[ffmpeg] / postproc / Makefile
index cf2af02811e583df8d1a2df7c9b64e76f6cc093e..475bd313818dd51b79f4e0ab7b778e696dc8c7d6 100644 (file)
@@ -1,11 +1,15 @@
 
 include ../config.mak
 
-LIBNAME = libpostproc.a
+SWSLIB = libswscale.a
 
-SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
-OBJS=$(SRCS:.c=.o)
-CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o
+SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c
+
+SWSOBJS=$(SWSSRCS:.c=.o)
+
+ifeq ($(TARGET_ALTIVEC),yes)
+SWSOBJS +=  yuv2rgb_altivec.o
+endif
 
 CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
 # -I/usr/X11R6/include/
@@ -15,30 +19,34 @@ CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
 # .PHONY: all clean
 
 .c.o:
-       $(CC) -c $(CFLAGS) -o $@ $<
+       $(CC) -c $(CFLAGS) -I.. -o $@ $<
 
-$(LIBNAME):     $(OBJS)
-       $(AR) r $(LIBNAME) $(OBJS)
+all:    $(SWSLIB)
 
-all:    $(LIBNAME)
+$(SWSLIB):     $(SWSOBJS)
+       $(AR) r $(SWSLIB) $(SWSOBJS)
+       $(RANLIB) $(SWSLIB)
 
 clean:
-       rm -f *.o *.a *~
+       rm -f *.o *.a *~ *.so cs_test swscale-example
 
-distclean:
-       rm -f Makefile.bak *.o *.a *~ .depend
+distclean: clean
+       rm -f .depend
 
 dep:    depend
 
 depend:
-       $(CC) -MM $(CFLAGS) $(SRCS) 1>.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) ../libmpcodecs/img_format.o -lm -o swscale-example -W -Wall
 #
 # include dependency files if they exist
 #
 ifneq ($(wildcard .depend),)
 include .depend
 endif
+