]> git.sesse.net Git - ffmpeg/blobdiff - postproc/Makefile
AltiVec hScale, all size patch by (Romain Dolbeau <dolbeaur at club-internet dot...
[ffmpeg] / postproc / Makefile
index a817718f6322267184672ed903f8db6a41c45b43..9dc3eb604bd3a41d0f5e8aec84122d8d7761a6d2 100644 (file)
@@ -5,7 +5,6 @@ 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
 
 CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
 # -I/usr/X11R6/include/
@@ -23,19 +22,21 @@ $(SWSLIB):     $(SWSOBJS)
        $(AR) r $(SWSLIB) $(SWSOBJS)
 
 clean:
-       rm -f *.o *.a *~ *.so
+       rm -f *.o *.a *~ *.so cs_test swscale-example
 
 distclean:
-       rm -f Makefile.bak *.o *.a *~ *.so .depend
+       rm -f Makefile.bak *.o *.a *~ *.so .depend cs_test swscale-example
 
 dep:    depend
 
 depend:
-       $(CC) -MM $(CFLAGS) $(SWSSRCS) postprocess.c 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
 #