Mercurial > mplayer.hg
annotate libfaad2/Makefile @ 13564:992960f68af0
postproc/yuv2rgb_altivec.c compile fix
yuv2rgb_altivec_init_tables does initialize the SwsContext vectors.
missing vec_splat.
patch by (Luca Barbato <lu_zero at gentoo dot org>) and (Romain Dolbeau <dolbeau at irisa dot fr>)
author | michael |
---|---|
date | Tue, 05 Oct 2004 19:11:00 +0000 |
parents | 6d50ef45a058 |
children | fbf889ed2426 |
rev | line source |
---|---|
10725 | 1 |
2 LIBNAME = libfaad2.a | |
3 | |
4 include ../config.mak | |
5 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12632
diff
changeset
|
6 SRCS = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.c |
10725 | 7 OBJS = $(SRCS:.c=.o) |
8 | |
9 CFLAGS = -I. $(OPTFLAGS) | |
10 | |
11 .SUFFIXES: .c .o | |
12 | |
13 # .PHONY: all clean | |
14 | |
15 .c.o: | |
16 $(CC) -c $(CFLAGS) -o $@ $< | |
17 | |
18 $(LIBNAME): $(OBJS) | |
19 $(AR) r $(LIBNAME) $(OBJS) | |
12632 | 20 $(RANLIB) $(LIBNAME) |
10725 | 21 |
22 all: $(LIBNAME) | |
23 | |
24 clean: | |
25 rm -f *.o *.a *~ | |
26 | |
27 distclean: | |
28 rm -f test *.o *.a *~ .depend | |
29 | |
30 dep: depend | |
31 | |
32 depend: | |
33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
34 | |
35 # | |
36 # include dependency files if they exist | |
37 # | |
38 ifneq ($(wildcard .depend),) | |
39 include .depend | |
40 endif |