Mercurial > mplayer.hg
annotate libswscale/Makefile @ 20926:623e0adc71a2
update to libnut, no nut_skip_packet()
author | ods15 |
---|---|
date | Wed, 15 Nov 2006 11:36:22 +0000 |
parents | 5298f5174a8b |
children | befebdb3ebaa |
rev | line source |
---|---|
18861 | 1 |
2 include ../config.mak | |
3 | |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
4 NAME=swscale |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
5 ifeq ($(BUILD_SHARED),yes) |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
6 LIBVERSION=$(SWSVERSION) |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
7 LIBMAJOR=$(SWSMAJOR) |
18861 | 8 endif |
9 | |
20397 | 10 EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) |
11 | |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
12 OBJS= swscale.o rgb2rgb.o yuv2rgb.o |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
13 ifeq ($(TARGET_ALTIVEC),yes) |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
14 OBJS+= yuv2rgb_altivec.o |
18861 | 15 endif |
16 | |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
17 HEADERS = swscale.h rgb2rgb.h |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
18 |
20800
5298f5174a8b
Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."
lucabe
parents:
20397
diff
changeset
|
19 include ../common.mak |
19470 | 20 |
20053 | 21 cs_test: cs_test.c $(LIB) |
19470 | 22 |
20067 | 23 swscale-example: swscale-example.o $(LIB) |
20034 | 24 |
25 clean:: | |
26 rm -f cs_test swscale-example |