Mercurial > mplayer.hg
annotate libswscale/Makefile @ 26639:00dee59d921d
cosmetics: Shuffle lines around and add empty lines.
author | lu_zero |
---|---|
date | Sun, 04 May 2008 20:22:03 +0000 |
parents | e82c55f04149 |
children | c1a75a6053f4 |
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 |
24285 | 6 OBJS = rgb2rgb.o swscale.o |
21991 | 7 |
26639
00dee59d921d
cosmetics: Shuffle lines around and add empty lines.
lu_zero
parents:
26638
diff
changeset
|
8 ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o |
26637 | 9 OBJS-$(ARCH_BFIN) += swscale_bfin.o yuv2rgb_bfin.o |
26639
00dee59d921d
cosmetics: Shuffle lines around and add empty lines.
lu_zero
parents:
26638
diff
changeset
|
10 |
21991 | 11 OBJS-$(CONFIG_GPL) += yuv2rgb.o |
26639
00dee59d921d
cosmetics: Shuffle lines around and add empty lines.
lu_zero
parents:
26638
diff
changeset
|
12 |
24285 | 13 OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o |
18861 | 14 |
26638
e82c55f04149
Build sparc arch specific code using the Makefile
lu_zero
parents:
26637
diff
changeset
|
15 OBJS-$(CONFIG_MLIB) += yuv2rgb_mlib.c |
e82c55f04149
Build sparc arch specific code using the Makefile
lu_zero
parents:
26637
diff
changeset
|
16 OBJS-$(HAVE_VIS) += yuv2rgb_vis.c |
e82c55f04149
Build sparc arch specific code using the Makefile
lu_zero
parents:
26637
diff
changeset
|
17 |
23289
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
18 |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
19 HEADERS = swscale.h rgb2rgb.h |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
20 |
26314 | 21 CLEANFILES = cs_test swscale-example |
19470 | 22 |
26314 | 23 include $(SUBDIR)../subdir.mak |
19470 | 24 |
26314 | 25 $(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME) |
20034 | 26 |
26314 | 27 $(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME) |
28 $(SUBDIR)swscale-example: EXTRALIBS += -lm |