forked from FFmpeg/FFmpeg
added cpuid.s
Originally committed as revision 24 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
35b2a786f5
commit
0725406c94
1 changed files with 4 additions and 1 deletions
|
@ -25,7 +25,7 @@ endif
|
||||||
|
|
||||||
# i386 mmx specific stuff
|
# i386 mmx specific stuff
|
||||||
ifeq ($(TARGET_MMX),yes)
|
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 \
|
OBJS += i386/fdctdata.o i386/cputest.o \
|
||||||
i386/dsputil_mmx.o i386/mpegvideo_mmx.o
|
i386/dsputil_mmx.o i386/mpegvideo_mmx.o
|
||||||
endif
|
endif
|
||||||
|
@ -46,6 +46,9 @@ dsputil.o: dsputil.c dsputil.h
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
$(CC) $(CFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
|
i386/cpuid.o: i386/cpuid.s
|
||||||
|
$(CC) -c -o $@ $<
|
||||||
|
|
||||||
%.o: %.s
|
%.o: %.s
|
||||||
nasm -f elf -o $@ $<
|
nasm -f elf -o $@ $<
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue