Mercurial > mplayer.hg
annotate libswscale/Makefile @ 26235:635327338b41
add complete fifo instructions, user didnt know to use mkfifo first.
author | compn |
---|---|
date | Fri, 21 Mar 2008 19:05:12 +0000 |
parents | 0c73352d4085 |
children | 67dbe3155ce5 |
rev | line source |
---|---|
18861 | 1 include ../config.mak |
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 |
8 OBJS-$(CONFIG_GPL) += yuv2rgb.o | |
24285 | 9 OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o |
18861 | 10 |
24285 | 11 OBJS-$(ARCH_BFIN) += swscale_bfin.o \ |
12 yuv2rgb_bfin.o \ | |
23585
d3ae6979d3df
integrating ff_bfin_get_unscaled_swscale into the system
mhoffman
parents:
23544
diff
changeset
|
13 |
23542
2e13eea875a3
Copile fix: missing libswscale part of ffmpeg r9322 TARGET_ARCH -> ARCH change.
reimar
parents:
23289
diff
changeset
|
14 ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o |
23289
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
15 |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
16 HEADERS = swscale.h rgb2rgb.h |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
17 |
20800
5298f5174a8b
Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."
lucabe
parents:
20397
diff
changeset
|
18 include ../common.mak |
19470 | 19 |
24774 | 20 cs_test: cs_test.o $(LIBNAME) |
19470 | 21 |
24774 | 22 swscale-example: swscale-example.o $(LIBNAME) |
23122
8e52146c056f
Don't declare -lm as a dependency of swscale-example.
diego
parents:
22337
diff
changeset
|
23 swscale-example: EXTRALIBS += -lm |
20034 | 24 |
25 clean:: | |
26 rm -f cs_test swscale-example |