[svn] / trunk / xvidcore / build / generic / Makefile.inc Repository:
ViewVC logotype

Annotation of /trunk/xvidcore/build/generic/Makefile.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 307 - (view) (download)

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 : suxen_drol 307 $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \
53 : edgomez 11 $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \
54 :     $(SRCDIR)/dct/x86_asm/idct_mmx.asm \
55 :     $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \
56 :     $(SRCDIR)/image/x86_asm/rgb_to_yv12_mmx.asm \
57 :     $(SRCDIR)/image/x86_asm/yuv_to_yv12_mmx.asm \
58 :     $(SRCDIR)/image/x86_asm/yuyv_to_yv12_mmx.asm \
59 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb24_mmx.asm \
60 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb32_mmx.asm \
61 :     $(SRCDIR)/image/x86_asm/yv12_to_yuyv_mmx.asm \
62 :     $(SRCDIR)/motion/x86_asm/sad_mmx.asm \
63 :     $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \
64 :     $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \
65 : chl 264 $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \
66 :     \
67 :     $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \
68 :     $(SRCDIR)/motion/x86_asm/sad_xmm.asm \
69 : suxen_drol 307 $(SRCDIR)/motion/x86_asm/sad_sse2.asm \
70 : chl 264 \
71 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm
72 :    
73 : Isibaar 3 DIRS_INTEL = \
74 : edgomez 11 $(SRCDIR)/bitstream/x86_asm/*.o \
75 :     $(SRCDIR)/dct/x86_asm/*.o \
76 :     $(SRCDIR)/image/x86_asm/*.o \
77 :     $(SRCDIR)/motion/x86_asm/*.o \
78 :     $(SRCDIR)/quant/x86_asm/*.o \
79 :     $(SRCDIR)/utils/x86_asm/*.o
80 : Isibaar 3
81 : ia64p 205 SRC_IA64 = \
82 :     $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \
83 :     $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \
84 :     $(SRCDIR)/motion/ia64_asm/sad_ia64.s \
85 : ia64p 298 $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \
86 : ia64p 205 $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \
87 :     $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s
88 :    
89 : ia64p 301 ifeq ($(CC),ecc)
90 :     SRC_IA64 += \
91 :     $(SRCDIR)/dct/ia64_asm/idct_ia64_ecc.s
92 :     else
93 :     SRC_IA64 += \
94 :     $(SRCDIR)/dct/ia64_asm/idct_ia64_gcc.s
95 :     endif
96 :    
97 :    
98 : ia64p 205 DIRS_IA64 = \
99 :     $(SRCDIR)/dct/ia64_asm/*.o \
100 :     $(SRCDIR)/image/ia64_asm/*.o \
101 :     $(SRCDIR)/motion/ia64_asm/*.o \
102 :     $(SRCDIR)/quant/ia64_asm/*.o \
103 :     $(SRCDIR)/utils/ia64_asm/*.o
104 :    
105 : canard 52 SRC_PPC = \
106 :     $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s
107 :    
108 : canard 71 SRC_ALTIVEC = \
109 : canard 77 $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \
110 :     $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \
111 : canard 90 $(SRCDIR)/dct/ppc_asm/idct_altivec.s \
112 :     $(SRCDIR)/motion/ppc_asm/sad_altivec.s
113 : canard 71
114 :    
115 : canard 52 DIRS_PPC = \
116 : canard 77 $(SRCDIR)/bitstream/ppc_asm/*.o \
117 :     $(SRCDIR)/dct/ppc_asm/*.o

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