~ubuntu-branches/debian/sid/mplayer/sid

« back to all changes in this revision

Viewing changes to libswscale/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): A Mennucc1
  • Date: 2009-03-23 10:05:45 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090323100545-x8h79obawnnte7kk
Tags: 1.0~rc2+svn20090303-5
debian/control : move docbook-xml,docbook-xsl,xsltproc from 
Build-Depends-Indep to Build-Depends, since they are needed to run
configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
include ../config.mak
3
 
 
4
 
NAME=swscale
5
 
LIBVERSION=$(SWSVERSION)
6
 
LIBMAJOR=$(SWSMAJOR)
7
 
 
8
 
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
9
 
 
10
 
OBJS = rgb2rgb.o swscale.o
11
 
 
12
 
OBJS-$(CONFIG_GPL)         +=  yuv2rgb.o
 
1
include $(SUBDIR)../config.mak
 
2
 
 
3
NAME = swscale
 
4
FFLIBS = avutil
 
5
 
 
6
HEADERS = swscale.h
 
7
 
 
8
OBJS = rgb2rgb.o swscale.o swscale_avoption.o yuv2rgb.o
 
9
 
 
10
OBJS-$(ARCH_BFIN)          +=  internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o
 
11
OBJS-$(CONFIG_MLIB)        +=  yuv2rgb_mlib.o
13
12
OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
14
 
 
15
 
OBJS-$(ARCH_BFIN)          +=  swscale_bfin.o \
16
 
                               yuv2rgb_bfin.o \
17
 
 
18
 
ASM_OBJS-$(ARCH_BFIN)      += internal_bfin.o
19
 
 
20
 
HEADERS = swscale.h rgb2rgb.h
21
 
 
22
 
include ../common.mak
23
 
 
24
 
cs_test: cs_test.o $(LIB)
25
 
 
26
 
swscale-example: swscale-example.o $(LIB)
27
 
swscale-example: EXTRALIBS += -lm
28
 
 
29
 
clean::
30
 
        rm -f cs_test swscale-example
 
13
OBJS-$(HAVE_VIS)           +=  yuv2rgb_vis.o
 
14
 
 
15
TESTS = cs_test swscale-example
 
16
 
 
17
CLEANFILES = cs_test swscale-example
 
18
 
 
19
include $(SUBDIR)../subdir.mak
 
20
 
 
21
$(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
 
22
 
 
23
$(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
 
24
$(SUBDIR)swscale-example: EXTRALIBS += -lm