2001-07-23 20:06:54 +00:00
|
|
|
include ../config.mak
|
|
|
|
|
2001-07-30 23:21:37 +00:00
|
|
|
CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H
|
2001-07-22 14:18:56 +00:00
|
|
|
LDFLAGS= -g
|
|
|
|
|
|
|
|
OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \
|
|
|
|
mpegaudio.o ac3enc.o mjpegenc.o resample.o dsputil.o \
|
|
|
|
motion_est.o imgconvert.o imgresample.o msmpeg4.o \
|
|
|
|
mpeg12.o h263dec.o rv10.o
|
2001-07-23 20:06:54 +00:00
|
|
|
ASM_OBJS=
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
# currently using libac3 for ac3 decoding
|
2001-07-23 20:58:31 +00:00
|
|
|
ifeq ($(CONFIG_AC3),yes)
|
2001-07-22 14:18:56 +00:00
|
|
|
OBJS+= ac3dec.o \
|
|
|
|
libac3/bit_allocate.o libac3/bitstream.o libac3/downmix.o \
|
|
|
|
libac3/imdct.o libac3/parse.o
|
2001-07-23 20:58:31 +00:00
|
|
|
endif
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
# currently using mpglib for mpeg audio decoding
|
2001-07-23 20:58:31 +00:00
|
|
|
ifeq ($(CONFIG_MPGLIB),yes)
|
2001-07-22 14:18:56 +00:00
|
|
|
OBJS+= mpegaudiodec.o \
|
|
|
|
mpglib/layer1.o mpglib/layer2.o mpglib/layer3.o \
|
|
|
|
mpglib/dct64_i386.o mpglib/decode_i386.o mpglib/tabinit.o
|
2001-07-23 20:58:31 +00:00
|
|
|
endif
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
# i386 mmx specific stuff
|
2001-07-23 20:06:54 +00:00
|
|
|
ifeq ($(TARGET_MMX),yes)
|
|
|
|
ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o
|
|
|
|
OBJS += i386/fdctdata.o i386/cputest.o \
|
2001-07-30 23:21:37 +00:00
|
|
|
i386/dsputil_mmx.o i386/mpegvideo_mmx.o
|
2001-07-22 14:18:56 +00:00
|
|
|
endif
|
|
|
|
|
2001-07-23 20:06:54 +00:00
|
|
|
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
LIB= libavcodec.a
|
|
|
|
TESTS= imgresample-test dct-test
|
|
|
|
|
|
|
|
all: $(LIB) apiexample
|
|
|
|
|
2001-07-23 20:06:54 +00:00
|
|
|
$(LIB): $(OBJS) $(ASM_OBJS)
|
2001-07-22 14:18:56 +00:00
|
|
|
rm -f $@
|
2001-07-23 20:06:54 +00:00
|
|
|
$(AR) rcs $@ $(OBJS) $(ASM_OBJS)
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
dsputil.o: dsputil.c dsputil.h
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
%.o: %.s
|
|
|
|
nasm -f elf -o $@ $<
|
|
|
|
|
2001-07-23 20:06:54 +00:00
|
|
|
# depend only used by mplayer now
|
|
|
|
dep: depend
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
clean:
|
|
|
|
rm -f *.o *~ *.a i386/*.o i386/*~ \
|
|
|
|
libac3/*.o libac3/*~ \
|
|
|
|
mpglib/*.o mpglib/*~ \
|
|
|
|
apiexample $(TESTS)
|
|
|
|
|
2001-07-23 20:06:54 +00:00
|
|
|
distclean: clean
|
|
|
|
rm -f Makefile.bak .depend
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
# api example program
|
|
|
|
apiexample: apiexample.c $(LIB)
|
|
|
|
$(CC) $(CFLAGS) -o $@ $< $(LIB) -lm
|
|
|
|
|
|
|
|
# testing progs
|
|
|
|
|
|
|
|
imgresample-test: imgresample.c
|
|
|
|
$(CC) $(CFLAGS) -DTEST -o $@ $^
|
|
|
|
|
|
|
|
dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o fdctref.o
|
|
|
|
$(CC) -o $@ $^
|
2001-07-23 20:58:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|