mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
ff4ec49e64
Originally committed as revision 599 to svn://svn.ffmpeg.org/ffmpeg/trunk
149 lines
3.2 KiB
Makefile
149 lines
3.2 KiB
Makefile
#
|
|
# libavcodec Makefile
|
|
# (c) 2000, 2001, 2002 Fabrice Bellard
|
|
#
|
|
include ../config.mak
|
|
|
|
VPATH=$(SRC_PATH)/libavcodec
|
|
|
|
# NOTE: -I.. is needed to include config.h
|
|
CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I..
|
|
LDFLAGS= -g
|
|
|
|
OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \
|
|
mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
|
|
motion_est.o imgconvert.o imgresample.o msmpeg4.o \
|
|
mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \
|
|
ratecontrol.o
|
|
ASM_OBJS=
|
|
|
|
# currently using liba52 for ac3 decoding
|
|
ifeq ($(CONFIG_AC3),yes)
|
|
OBJS+= a52dec.o
|
|
|
|
# using builtin liba52 or runtime linked liba52.so.0
|
|
ifneq ($(CONFIG_A52BIN),yes)
|
|
OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
|
|
liba52/imdct.o liba52/parse.o
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MP3LAME),yes)
|
|
OBJS += mp3lameaudio.o
|
|
EXTRALIBS += -lmp3lame
|
|
endif
|
|
|
|
ifeq ($(TARGET_GPROF),yes)
|
|
CFLAGS+=-p
|
|
LDFLAGS+=-p
|
|
endif
|
|
|
|
# i386 mmx specific stuff
|
|
ifeq ($(TARGET_MMX),yes)
|
|
OBJS += i386/fdct_mmx.o i386/cputest.o \
|
|
i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
|
|
i386/idct_mmx.o i386/motion_est_mmx.o \
|
|
i386/simple_idct_mmx.o
|
|
endif
|
|
|
|
# armv4l specific stuff
|
|
ifeq ($(TARGET_ARCH_ARMV4L),yes)
|
|
ASM_OBJS += armv4l/jrevdct_arm.o
|
|
OBJS += armv4l/dsputil_arm.o
|
|
endif
|
|
|
|
# sun mediaLib specific stuff
|
|
# currently only works when libavcodec is used in mplayer
|
|
ifeq ($(HAVE_MLIB),yes)
|
|
OBJS += mlib/dsputil_mlib.o
|
|
CFLAGS += $(MLIB_INC)
|
|
endif
|
|
|
|
# alpha specific stuff
|
|
ifeq ($(TARGET_ARCH_ALPHA),yes)
|
|
OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o
|
|
CFLAGS += -Wa,-mpca56
|
|
endif
|
|
|
|
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
|
|
OBJS := $(OBJS) $(ASM_OBJS)
|
|
|
|
LIB= libavcodec.a
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
SLIB= libavcodec.so
|
|
endif
|
|
TESTS= imgresample-test dct-test motion-test
|
|
|
|
all: $(LIB) $(SLIB)
|
|
|
|
tests: apiexample cpuid_test $(TESTS)
|
|
|
|
$(LIB): $(OBJS)
|
|
rm -f $@
|
|
$(AR) rc $@ $(OBJS)
|
|
|
|
$(SLIB): $(OBJS)
|
|
$(CC) -shared -o $@ $(OBJS) $(EXTRALIBS)
|
|
|
|
dsputil.o: dsputil.c dsputil.h
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.S
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
# depend only used by mplayer now
|
|
dep: depend
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
clean:
|
|
rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
|
|
armv4l/*.o armv4l/*~ \
|
|
mlib/*.o mlib/*~ \
|
|
alpha/*.o alpha/*~ \
|
|
liba52/*.o liba52/*~ \
|
|
apiexample $(TESTS)
|
|
|
|
distclean: clean |