Mercurial > mplayer.hg
annotate libswscale/Makefile @ 29042:c198fbb7172e
Move bfin specific code to its subdir.
author | ramiro |
---|---|
date | Fri, 27 Mar 2009 22:56:56 +0000 |
parents | 15e1d6124a6b |
children | 76d3bebf4e45 |
rev | line source |
---|---|
26314 | 1 include $(SUBDIR)../config.mak |
18861 | 2 |
26168
11928ea84b90
cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
diego
parents:
26161
diff
changeset
|
3 NAME = swscale |
26154 | 4 FFLIBS = avutil |
20397 | 5 |
27936
72fefc25df4b
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
27855
diff
changeset
|
6 HEADERS = swscale.h |
72fefc25df4b
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
27855
diff
changeset
|
7 |
28688 | 8 OBJS = rgb2rgb.o swscale.o swscale_avoption.o yuv2rgb.o |
21991 | 9 |
29042 | 10 OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \ |
11 bfin/swscale_bfin.o \ | |
12 bfin/yuv2rgb_bfin.o | |
29028 | 13 OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o |
14 OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o | |
15 OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o | |
16 | |
17 MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \ | |
18 | |
19 OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes) | |
26638
e82c55f04149
Build sparc arch specific code using the Makefile
lu_zero
parents:
26637
diff
changeset
|
20 |
29021
500adeff7ff4
swscale-example is an API example, not a test program.
diego
parents:
29004
diff
changeset
|
21 EXAMPLES = swscale-example |
29032
15e1d6124a6b
Rename cs_test.c --> colorspace-test.c. This is more consistent with the names
diego
parents:
29028
diff
changeset
|
22 TESTPROGS = colorspace |
27854 | 23 |
29028 | 24 DIRS = bfin mlib ppc sparc x86 |
25 | |
26314 | 26 include $(SUBDIR)../subdir.mak |
19470 | 27 |
29032
15e1d6124a6b
Rename cs_test.c --> colorspace-test.c. This is more consistent with the names
diego
parents:
29028
diff
changeset
|
28 $(SUBDIR)colorspace-test: $(SUBDIR)colorspace-test.o $(SUBDIR)$(LIBNAME) |
20034 | 29 |
26314 | 30 $(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME) |
31 $(SUBDIR)swscale-example: EXTRALIBS += -lm |