summaryrefslogtreecommitdiffstats
path: root/libswscale/Makefile
diff options
context:
space:
mode:
authorlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-30 12:00:31 +0000
committerlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-30 12:00:31 +0000
commitcc30aae17bf521fc5453c7ee173cceefde255faf (patch)
treee88e8921f811ae85227b451ce739a0b9d49db9f8 /libswscale/Makefile
parent6ff1b359593595622d6f231fb3d5ff53e63cfa3d (diff)
downloadmpv-cc30aae17bf521fc5453c7ee173cceefde255faf.tar.bz2
mpv-cc30aae17bf521fc5453c7ee173cceefde255faf.tar.xz
Move postproc ---> libswscale
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18866 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r--libswscale/Makefile52
1 files changed, 52 insertions, 0 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile
new file mode 100644
index 0000000000..475bd31381
--- /dev/null
+++ b/libswscale/Makefile
@@ -0,0 +1,52 @@
+
+include ../config.mak
+
+SWSLIB = libswscale.a
+
+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/
+
+.SUFFIXES: .c .o
+
+# .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
+