Mercurial > mplayer.hg
annotate libswscale/Makefile @ 29021:500adeff7ff4
swscale-example is an API example, not a test program.
author | diego |
---|---|
date | Wed, 25 Mar 2009 18:08:52 +0000 |
parents | 7d77afec5881 |
children | f8db50af4035 |
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 |
27855 | 10 OBJS-$(ARCH_BFIN) += internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o |
27003 | 11 OBJS-$(CONFIG_MLIB) += yuv2rgb_mlib.o |
24285 | 12 OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o |
27002
9fc307f7259c
VIS OBJS should end in .o, not .c; patch by Jan Knutar, jknutar nic fi.
diego
parents:
26641
diff
changeset
|
13 OBJS-$(HAVE_VIS) += yuv2rgb_vis.o |
26638
e82c55f04149
Build sparc arch specific code using the Makefile
lu_zero
parents:
26637
diff
changeset
|
14 |
29021
500adeff7ff4
swscale-example is an API example, not a test program.
diego
parents:
29004
diff
changeset
|
15 EXAMPLES = swscale-example |
500adeff7ff4
swscale-example is an API example, not a test program.
diego
parents:
29004
diff
changeset
|
16 TESTPROGS = cs_test |
27854 | 17 |
26314 | 18 include $(SUBDIR)../subdir.mak |
19470 | 19 |
26314 | 20 $(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME) |
20034 | 21 |
26314 | 22 $(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME) |
23 $(SUBDIR)swscale-example: EXTRALIBS += -lm |