Mercurial > mplayer.hg
annotate libswscale/Makefile @ 22254:c9aaf1f83588
10l copy and paste bug in the license header
author | diego |
---|---|
date | Mon, 19 Feb 2007 01:26:17 +0000 |
parents | 3f0dc86dde93 |
children | d79bd226342d |
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 | |
21683
befebdb3ebaa
Allow to compile swscale's non-SIMD code under the LGPL license.
lucabe
parents:
20800
diff
changeset
|
12 OBJS= swscale.o rgb2rgb.o |
21991 | 13 |
14 OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o | |
15 OBJS-$(CONFIG_GPL) += yuv2rgb.o | |
18861 | 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 |
22030 | 21 cs_test: cs_test.o $(LIB) |
19470 | 22 |
22030 | 23 swscale-example: swscale-example.o $(LIB) -lm |
20034 | 24 |
25 clean:: | |
26 rm -f cs_test swscale-example |