[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 732 - (view) (download)

1 : Isibaar 732 LIB=libxvidcore.a
2 :     LIBSO=libxvidcore.so
3 :    
4 :    
5 :     SRCDIR = ../../src
6 :    
7 :     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 :     $(SRCDIR)/image/image.c \
19 :     $(SRCDIR)/image/interpolate8x8.c \
20 :     $(SRCDIR)/motion/motion_comp.c \
21 :     $(SRCDIR)/motion/motion_est.c \
22 :     $(SRCDIR)/motion/sad.c \
23 :     $(SRCDIR)/prediction/mbprediction.c \
24 :     $(SRCDIR)/quant/adapt_quant.c \
25 :     $(SRCDIR)/quant/quant_h263.c \
26 :     $(SRCDIR)/quant/quant_matrix.c \
27 :     $(SRCDIR)/quant/quant_mpeg4.c \
28 :     $(SRCDIR)/utils/emms.c \
29 :     $(SRCDIR)/utils/mbtransquant.c \
30 :     $(SRCDIR)/utils/mem_align.c \
31 :     $(SRCDIR)/utils/mem_transfer.c \
32 :     $(SRCDIR)/utils/ratecontrol.c \
33 :     $(SRCDIR)/utils/timer.c
34 :    
35 :    
36 :     DIRS = \
37 :     $(SRCDIR)/*.o \
38 :     $(SRCDIR)/bitstream/*.o \
39 :     $(SRCDIR)/dct/*.o \
40 :     $(SRCDIR)/image/*.o \
41 :     $(SRCDIR)/motion/*.o \
42 :     $(SRCDIR)/prediction/*.o \
43 :     $(SRCDIR)/quant/*.o \
44 :     $(SRCDIR)/utils/*.o
45 :    
46 :     SRC_INTEL = \
47 :     $(SRCDIR)/utils/x86_asm/cpuid.asm \
48 :     \
49 :     $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \
50 :     $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \
51 :     $(SRCDIR)/dct/x86_asm/idct_mmx.asm \
52 :     $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \
53 :     $(SRCDIR)/image/x86_asm/rgb_to_yv12_mmx.asm \
54 :     $(SRCDIR)/image/x86_asm/yuv_to_yv12_mmx.asm \
55 :     $(SRCDIR)/image/x86_asm/yuyv_to_yv12_mmx.asm \
56 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb24_mmx.asm \
57 :     $(SRCDIR)/image/x86_asm/yv12_to_rgb32_mmx.asm \
58 :     $(SRCDIR)/image/x86_asm/yv12_to_yuyv_mmx.asm \
59 :     $(SRCDIR)/motion/x86_asm/sad_mmx.asm \
60 :     $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \
61 :     $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \
62 :     $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \
63 :     \
64 :     $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \
65 :     $(SRCDIR)/motion/x86_asm/sad_xmm.asm \
66 :     \
67 :     $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \
68 :     $(SRCDIR)/motion/x86_asm/sad_sse2.asm \
69 :     \
70 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \
71 :     $(SRCDIR)/motion/x86_asm/sad_3dn.asm \
72 :     \
73 :     $(SRCDIR)/bitstream/x86_asm/cbp_3dne.asm \
74 :     $(SRCDIR)/dct/x86_asm/idct_3dne.asm \
75 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dne.asm \
76 :     $(SRCDIR)/motion/x86_asm/sad_3dne.asm \
77 :     $(SRCDIR)/quant/x86_asm/quantize4_xmm.asm \
78 :     $(SRCDIR)/quant/x86_asm/quantize_3dne.asm \
79 :     $(SRCDIR)/utils/x86_asm/mem_transfer_3dne.asm
80 :    
81 :     DIRS_INTEL = \
82 :     $(SRCDIR)/bitstream/x86_asm/*.o \
83 :     $(SRCDIR)/dct/x86_asm/*.o \
84 :     $(SRCDIR)/image/x86_asm/*.o \
85 :     $(SRCDIR)/motion/x86_asm/*.o \
86 :     $(SRCDIR)/quant/x86_asm/*.o \
87 :     $(SRCDIR)/utils/x86_asm/*.o
88 :    
89 :     SRC_IA64 = \
90 :     $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \
91 :     $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \
92 :     $(SRCDIR)/motion/ia64_asm/sad_ia64.s \
93 :     $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \
94 :     $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \
95 :     $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s
96 :    
97 :     ifeq ($(CC),ecc)
98 :     SRC_IA64 += \
99 :     $(SRCDIR)/dct/ia64_asm/idct_ia64_ecc.s
100 :     else
101 :     SRC_IA64 += \
102 :     $(SRCDIR)/dct/ia64_asm/idct_ia64_gcc.s
103 :     endif
104 :    
105 :    
106 :     DIRS_IA64 = \
107 :     $(SRCDIR)/dct/ia64_asm/*.o \
108 :     $(SRCDIR)/image/ia64_asm/*.o \
109 :     $(SRCDIR)/motion/ia64_asm/*.o \
110 :     $(SRCDIR)/quant/ia64_asm/*.o \
111 :     $(SRCDIR)/utils/ia64_asm/*.o
112 :    
113 :     SRC_PPC = \
114 :     $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s
115 :    
116 :     SRC_ALTIVEC = \
117 :     $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \
118 :     $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \
119 :     $(SRCDIR)/dct/ppc_asm/idct_altivec.s \
120 :     $(SRCDIR)/motion/ppc_asm/sad_altivec.s
121 :    
122 :    
123 :     DIRS_PPC = \
124 :     $(SRCDIR)/bitstream/ppc_asm/*.o \
125 :     $(SRCDIR)/dct/ppc_asm/*.o

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