Commit 991772f0 authored by glantau's avatar glantau

added cpuid.s


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@24 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b10fead4
......@@ -25,7 +25,7 @@ endif
# i386 mmx specific stuff
ifeq ($(TARGET_MMX),yes)
ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o
ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o i386/cpuid.o
OBJS += i386/fdctdata.o i386/cputest.o \
i386/dsputil_mmx.o i386/mpegvideo_mmx.o
endif
......@@ -46,6 +46,9 @@ dsputil.o: dsputil.c dsputil.h
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
i386/cpuid.o: i386/cpuid.s
$(CC) -c -o $@ $<
%.o: %.s
nasm -f elf -o $@ $<
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment