Mercurial > libavcodec.hg
diff Makefile @ 15:076bcac8d059 libavcodec
added cpuid.s
author | glantau |
---|---|
date | Mon, 30 Jul 2001 23:50:04 +0000 |
parents | 0dd0178a24c5 |
children | b69fe46fd708 |
line wrap: on
line diff
--- a/Makefile Mon Jul 30 23:28:35 2001 +0000 +++ b/Makefile Mon Jul 30 23:50:04 2001 +0000 @@ -25,7 +25,7 @@ # 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 @@ %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< +i386/cpuid.o: i386/cpuid.s + $(CC) -c -o $@ $< + %.o: %.s nasm -f elf -o $@ $<