]> 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 5f7428943809458f5cb1a3595b123715ad9473b3..9dc3eb604bd3a41d0f5e8aec84122d8d7761a6d2 100644 (file)
@@ -1,16 +1,12 @@
 
 include ../config.mak
 
-LIBNAME = libpostproc.a
+SWSLIB = libswscale.a
 
-SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
-OBJS=$(SRCS:.c=.o)
+SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c
+SWSOBJS=$(SWSSRCS:.c=.o)
 
-ifeq ($(TARGET_ARCH_X86),yes)
-SRCS += yuv2rgb_mmx.c
-endif
-
-CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall
+CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
 # -I/usr/X11R6/include/
 
 .SUFFIXES: .c .o
@@ -18,24 +14,29 @@ CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall
 # .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)
 
 clean:
-       rm -f *.o *.a *~
+       rm -f *.o *.a *~ *.so cs_test swscale-example
 
 distclean:
-       rm -f Makefile.bak *.o *.a *~ .depend
+       rm -f Makefile.bak *.o *.a *~ *.so .depend cs_test swscale-example
 
 dep:    depend
 
 depend:
-       $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+       $(CC) -MM $(CFLAGS) $(SWSSRCS) 1>.depend
+
+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
 #