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

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