Mercurial > mplayer.hg
annotate libswscale/Makefile @ 20742:172fed37b456
_inputmodules vs _noinputmodules typo fix
noticed by Klaus M¸«äller, mk.2001 web de
author | diego |
---|---|
date | Tue, 07 Nov 2006 21:05:03 +0000 |
parents | 1685fb149c76 |
children | 5298f5174a8b |
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 |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
19 include $(SRC_PATH)/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 |