comparison Makefile @ 32:a524484f9adf libavcodec

added idct mmx
author glantau
date Tue, 07 Aug 2001 22:42:22 +0000
parents 1e131bc21101
children ab64a3fc62bf
comparison
equal deleted inserted replaced
31:e4b7c3e5e527 32:a524484f9adf
25 25
26 # i386 mmx specific stuff 26 # i386 mmx specific stuff
27 ifeq ($(TARGET_MMX),yes) 27 ifeq ($(TARGET_MMX),yes)
28 ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o 28 ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o
29 OBJS += i386/fdctdata.o i386/cputest.o \ 29 OBJS += i386/fdctdata.o i386/cputest.o \
30 i386/dsputil_mmx.o i386/mpegvideo_mmx.o 30 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
31 i386/idct_mmx.o
31 endif 32 endif
32 33
33 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) 34 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
34 35
35 LIB= libavcodec.a 36 LIB= libavcodec.a
72 # testing progs 73 # testing progs
73 74
74 imgresample-test: imgresample.c 75 imgresample-test: imgresample.c
75 $(CC) $(CFLAGS) -DTEST -o $@ $^ 76 $(CC) $(CFLAGS) -DTEST -o $@ $^
76 77
77 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o fdctref.o 78 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o \
79 fdctref.o jrevdct.o i386/idct_mmx.o
78 $(CC) -o $@ $^ 80 $(CC) -o $@ $^
79 81
80 # 82 #
81 # include dependency files if they exist 83 # include dependency files if they exist
82 # 84 #