]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
New LGPLed YUV2RGB table generator for SwScaler
[ffmpeg] / libswscale / Makefile
index 475bd313818dd51b79f4e0ab7b778e696dc8c7d6..9ebe825266902b395577ba6238f6a014ea049845 100644 (file)
@@ -1,52 +1,24 @@
+include $(SUBDIR)../config.mak
 
-include ../config.mak
+NAME = swscale
+FFLIBS = avutil
 
-SWSLIB = libswscale.a
+HEADERS = swscale.h
 
-SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c
+OBJS = rgb2rgb.o swscale.o swscale_avoption.o yuv2rgb2.o
 
-SWSOBJS=$(SWSSRCS:.c=.o)
+OBJS-$(ARCH_BFIN)          +=  internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o
+OBJS-$(CONFIG_MLIB)        +=  yuv2rgb_mlib.o
+OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
+OBJS-$(HAVE_VIS)           +=  yuv2rgb_vis.o
 
-ifeq ($(TARGET_ALTIVEC),yes)
-SWSOBJS +=  yuv2rgb_altivec.o
-endif
+TESTS = cs_test swscale-example
 
-CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
-# -I/usr/X11R6/include/
+CLEANFILES = cs_test swscale-example
 
-.SUFFIXES: .c .o
+include $(SUBDIR)../subdir.mak
 
-# .PHONY: all clean
-
-.c.o:
-       $(CC) -c $(CFLAGS) -I.. -o $@ $<
-
-all:    $(SWSLIB)
-
-$(SWSLIB):     $(SWSOBJS)
-       $(AR) r $(SWSLIB) $(SWSOBJS)
-       $(RANLIB) $(SWSLIB)
-
-clean:
-       rm -f *.o *.a *~ *.so cs_test swscale-example
-
-distclean: clean
-       rm -f .depend
-
-dep:    depend
-
-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
-#
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+$(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
 
+$(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
+$(SUBDIR)swscale-example: EXTRALIBS += -lm