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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/xvidcore/build/generic/Makefile.inc revision 11, Sat Mar 9 10:18:23 2002 UTC branches/dev-api-3/xvidcore/build/generic/Makefile.inc revision 737, Mon Dec 23 09:24:29 2002 UTC
# Line 1  Line 1 
1  LIB=libcore.a  LIB=libxvidcore.a
2  LIBSO=libxvidcore.so  LIBSO=libxvidcore.so
3    
4    
# Line 17  Line 17 
17          $(SRCDIR)/image/colorspace.c \          $(SRCDIR)/image/colorspace.c \
18          $(SRCDIR)/image/image.c \          $(SRCDIR)/image/image.c \
19          $(SRCDIR)/image/interpolate8x8.c \          $(SRCDIR)/image/interpolate8x8.c \
20            $(SRCDIR)/image/reduced.c \
21            $(SRCDIR)/image/font.c \
22          $(SRCDIR)/motion/motion_comp.c \          $(SRCDIR)/motion/motion_comp.c \
23          $(SRCDIR)/motion/motion_est.c \          $(SRCDIR)/motion/motion_est.c \
24            $(SRCDIR)/motion/smp_motion_est.c \
25          $(SRCDIR)/motion/sad.c \          $(SRCDIR)/motion/sad.c \
26          $(SRCDIR)/prediction/mbprediction.c \          $(SRCDIR)/prediction/mbprediction.c \
27          $(SRCDIR)/quant/adapt_quant.c \          $(SRCDIR)/quant/adapt_quant.c \
# Line 43  Line 46 
46          $(SRCDIR)/quant/*.o \          $(SRCDIR)/quant/*.o \
47          $(SRCDIR)/utils/*.o          $(SRCDIR)/utils/*.o
48    
   
49  SRC_INTEL = \  SRC_INTEL = \
50            $(SRCDIR)/utils/x86_asm/cpuid.asm \
51            \
52          $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \          $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \
53          $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \          $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \
54          $(SRCDIR)/dct/x86_asm/idct_mmx.asm \          $(SRCDIR)/dct/x86_asm/idct_mmx.asm \
55          $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \          $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \
56          $(SRCDIR)/image/x86_asm/rgb_to_yv12_mmx.asm \          $(SRCDIR)/image/x86_asm/reduced_mmx.asm \
57          $(SRCDIR)/image/x86_asm/yuv_to_yv12_mmx.asm \          $(SRCDIR)/image/x86_asm/colorspace_rgb_mmx.asm \
58          $(SRCDIR)/image/x86_asm/yuyv_to_yv12_mmx.asm \          $(SRCDIR)/image/x86_asm/colorspace_yuyv_mmx.asm \
59          $(SRCDIR)/image/x86_asm/yv12_to_rgb24_mmx.asm \          $(SRCDIR)/image/x86_asm/colorspace_yuv_mmx.asm \
         $(SRCDIR)/image/x86_asm/yv12_to_rgb32_mmx.asm \  
         $(SRCDIR)/image/x86_asm/yv12_to_yuyv_mmx.asm \  
60          $(SRCDIR)/motion/x86_asm/sad_mmx.asm \          $(SRCDIR)/motion/x86_asm/sad_mmx.asm \
61          $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \          $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \
62          $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \          $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \
63          $(SRCDIR)/utils/x86_asm/cpuid.asm \          $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm    \
64          $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm          $(SRCDIR)/utils/x86_asm/interlacing_mmx.asm \
65            \
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 = \  DIRS_INTEL = \
84          $(SRCDIR)/bitstream/x86_asm/*.o \          $(SRCDIR)/bitstream/x86_asm/*.o \
# Line 70  Line 88 
88          $(SRCDIR)/quant/x86_asm/*.o \          $(SRCDIR)/quant/x86_asm/*.o \
89          $(SRCDIR)/utils/x86_asm/*.o          $(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

Legend:
Removed from v.11  
changed lines
  Added in v.737

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