view libmpeg2/Makefile @ 24614:33463f5fb929

r21861: explain how to use MEncoder to create QuickTime-compatible files r21875: fix wrong option names r21917: typo fixes r21931: update x264's subq otion description r21932: update and factorize information about x264's multi-threading mode r21933: fixes suggested by Diego r21934: get rid of two spaces after a period (instead of one)
author kraymer
date Thu, 27 Sep 2007 21:22:26 +0000
parents f19f12214991
children ee7cc1c29cbc
line wrap: on
line source

include ../config.mak

LIBNAME_COMMON = libmpeg2.a

SRCS_COMMON = alloc.c \
	      cpu_accel.c\
	      cpu_state.c \
	      decode.c \
	      header.c \
	      idct.c \
	      motion_comp.c \
	      slice.c \

SRCS_COMMON-$(HAVE_MMX)        += idct_mmx.c motion_comp_mmx.c
SRCS_COMMON-$(HAVE_ALTIVEC)    += motion_comp_altivec.c idct_altivec.c
SRCS_COMMON-$(HAVE_VIS)        += motion_comp_vis.c
SRCS_COMMON-$(ARCH_ALPHA) += idct_alpha.c motion_comp_alpha.c
SRCS_COMMON-$(ARCH_ARMV4L) += motion_comp_arm.c motion_comp_iwmmxt.c motion_comp_arm_s.S

include ../mpcommon.mak