annotate libswscale/Makefile @ 27863:f3384addfb0b

set to -1 fds that were closed; handle the sec_fd only if CONFIG_DVB_HEAD isn't defined; patch by Reimar
author nicodvb
date Wed, 05 Nov 2008 23:37:52 +0000
parents eb78efa6cb07
children 72fefc25df4b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26314
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
1 include $(SUBDIR)../config.mak
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2
26168
11928ea84b90 cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
diego
parents: 26161
diff changeset
3 NAME = swscale
26154
0bb26e5c076c consolidate CFLAGS, LDFLAGS, EXTRALIBS assignment
mru
parents: 24774
diff changeset
4 FFLIBS = avutil
20397
1685fb149c76 Properly set EXTRALIBS
lucabe
parents: 20148
diff changeset
5
27212
18fc658de355 Split AVOption/AVClass in a separate file. SoC Patch from Keiji Costantini
lu_zero
parents: 27003
diff changeset
6 OBJS = rgb2rgb.o swscale.o swscale_avoption.o
21991
ba11e9a0880f Simplify conditional compilation handling.
diego
parents: 21714
diff changeset
7
27855
eb78efa6cb07 Merge ARCH_BFIN lines.
diego
parents: 27854
diff changeset
8 OBJS-$(ARCH_BFIN) += internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o
21991
ba11e9a0880f Simplify conditional compilation handling.
diego
parents: 21714
diff changeset
9 OBJS-$(CONFIG_GPL) += yuv2rgb.o
27003
42ea61ee020c OBJS should end in .o, not .c.
diego
parents: 27002
diff changeset
10 OBJS-$(CONFIG_MLIB) += yuv2rgb_mlib.o
24285
0770f1d5b781 cosmetics: Sort some lines, whitespace changes.
diego
parents: 23585
diff changeset
11 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
12 OBJS-$(HAVE_VIS) += yuv2rgb_vis.o
26638
e82c55f04149 Build sparc arch specific code using the Makefile
lu_zero
parents: 26637
diff changeset
13
27802
3594f4881efd rgb2rgb.h was not really intended to be a public header, thus remove it.
michael
parents: 27212
diff changeset
14 HEADERS = swscale.h
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
15
27854
e5794cd5f4c9 Add tests target for libswscale test programs.
diego
parents: 27853
diff changeset
16 TESTS = cs_test swscale-example
e5794cd5f4c9 Add tests target for libswscale test programs.
diego
parents: 27853
diff changeset
17
26314
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
18 CLEANFILES = cs_test swscale-example
19470
b3939dba3c13 Allow to compile swscale tests
lucabe
parents: 19420
diff changeset
19
26314
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
20 include $(SUBDIR)../subdir.mak
19470
b3939dba3c13 Allow to compile swscale tests
lucabe
parents: 19420
diff changeset
21
26314
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
22 $(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
20034
534282370162 Remove cs_test and swscale-example on clean.
diego
parents: 20033
diff changeset
23
26314
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
24 $(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
67dbe3155ce5 non-recursive makefiles
mru
parents: 26169
diff changeset
25 $(SUBDIR)swscale-example: EXTRALIBS += -lm