[svn] / branches / dev-api-3 / xvidcore / build / generic / Makefile.inc Repository:
ViewVC logotype

Annotation of /branches/dev-api-3/xvidcore/build/generic/Makefile.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 298 - (view) (download)
Original Path: trunk/xvidcore/build/generic/Makefile.inc

1 : Isibaar 3 LIB=libcore.a
2 :     LIBSO=libxvidcore.so
3 :    
4 :    
5 :     SRCDIR = ../../src
6 :    
7 : edgomez 11 SRC = \
8 :     $(SRCDIR)/decoder.c \
9 :     $(SRCDIR)/divx4.c \
10 :     $(SRCDIR)/encoder.c \
11 :     $(SRCDIR)/xvid.c \
12 :     $(SRCDIR)/bitstream/bitstream.c \
13 :     $(SRCDIR)/bitstream/cbp.c \
14 :     $(SRCDIR)/bitstream/mbcoding.c \
15 :     $(SRCDIR)/dct/fdct.c \
16 :     $(SRCDIR)/dct/idct.c \
17 :     $(SRCDIR)/image/colorspace.c \
18 : Isibaar 3 $(SRCDIR)/image/image.c \
19 : edgomez 11 $(SRCDIR)/image/interpolate8x8.c \
20 : edgomez 255 $(SRCDIR)/image/font.c \
21 : edgomez 11 $(SRCDIR)/motion/motion_comp.c \
22 :     $(SRCDIR)/motion/motion_est.c \
23 : chl 260 $(SRCDIR)/motion/smp_motion_est.c \
24 : edgomez 11 $(SRCDIR)/motion/sad.c \
25 :     $(SRCDIR)/prediction/mbprediction.c \
26 :     $(SRCDIR)/quant/adapt_quant.c \
27 :     $(SRCDIR)/quant/quant_h263.c \
28 :     $(SRCDIR)/quant/quant_matrix.c \
29 :     $(SRCDIR)/quant/quant_mpeg4.c \
30 :     $(SRCDIR)/utils/emms.c \
31 :     $(SRCDIR)/utils/mbtransquant.c \
32 :     $(SRCDIR)/utils/mem_align.c \
33 :     $(SRCDIR)/utils/mem_transfer.c \
34 :     $(SRCDIR)/utils/ratecontrol.c \
35 :     $(SRCDIR)/utils/timer.c
36 : Isibaar 3
37 :    
38 : edgomez 11 DIRS = \
39 :     $(SRCDIR)/*.o \
40 :     $(SRCDIR)/bitstream/*.o \
41 :     $(SRCDIR)/dct/*.o \
42 :     $(SRCDIR)/image/*.o \
43 :     $(SRCDIR)/motion/*.o \
44 :     $(SRCDIR)/prediction/*.o \
45 :     $(SRCDIR)/quant/*.o \
46 :     $(SRCDIR)/utils/*.o
47 :    
48 : Isibaar 3 SRC_INTEL = \
49 : chl 264 $(SRCDIR)/utils/x86_asm/cpuid.asm \
50 :     \
51 : edgomez 11 $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \
52 :     $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \
53 :     $(SRCDIR)/dct/x86_asm/idct_mmx.asm \
54 :     $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \
55 :     $(SRCDIR)/image/x86_asm/rgb_to_yv12_mmx.asm \
56 :     $(SRCDIR)/image/x86_asm/yuv_to_yv12_mmx.asm \
57 :     $(SRCDIR)/image/x86_asm/yuyv_to_yv12_mmx.asm \
58 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb24_mmx.asm \
59 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb32_mmx.asm \
60 :     $(SRCDIR)/image/x86_asm/yv12_to_yuyv_mmx.asm \
61 :     $(SRCDIR)/motion/x86_asm/sad_mmx.asm \
62 :     $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \
63 :     $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \
64 : chl 264 $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \
65 :     \
66 :     $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \
67 :     $(SRCDIR)/motion/x86_asm/sad_xmm.asm \
68 :     \
69 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm
70 :    
71 : Isibaar 3 DIRS_INTEL = \
72 : edgomez 11 $(SRCDIR)/bitstream/x86_asm/*.o \
73 :     $(SRCDIR)/dct/x86_asm/*.o \
74 :     $(SRCDIR)/image/x86_asm/*.o \
75 :     $(SRCDIR)/motion/x86_asm/*.o \
76 :     $(SRCDIR)/quant/x86_asm/*.o \
77 :     $(SRCDIR)/utils/x86_asm/*.o
78 : Isibaar 3
79 : ia64p 205 SRC_IA64 = \
80 :     $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \
81 :     $(SRCDIR)/dct/ia64_asm/idct_ia64.s \
82 :     $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \
83 :     $(SRCDIR)/motion/ia64_asm/sad_ia64.s \
84 : ia64p 298 $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \
85 : ia64p 205 $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \
86 :     $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s
87 :    
88 :     DIRS_IA64 = \
89 :     $(SRCDIR)/dct/ia64_asm/*.o \
90 :     $(SRCDIR)/image/ia64_asm/*.o \
91 :     $(SRCDIR)/motion/ia64_asm/*.o \
92 :     $(SRCDIR)/quant/ia64_asm/*.o \
93 :     $(SRCDIR)/utils/ia64_asm/*.o
94 :    
95 : canard 52 SRC_PPC = \
96 :     $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s
97 :    
98 : canard 71 SRC_ALTIVEC = \
99 : canard 77 $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \
100 :     $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \
101 : canard 90 $(SRCDIR)/dct/ppc_asm/idct_altivec.s \
102 :     $(SRCDIR)/motion/ppc_asm/sad_altivec.s
103 : canard 71
104 :    
105 : canard 52 DIRS_PPC = \
106 : canard 77 $(SRCDIR)/bitstream/ppc_asm/*.o \
107 :     $(SRCDIR)/dct/ppc_asm/*.o

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4