comparison Makefile @ 15:076bcac8d059 libavcodec

added cpuid.s
author glantau
date Mon, 30 Jul 2001 23:50:04 +0000
parents 0dd0178a24c5
children b69fe46fd708
comparison
equal deleted inserted replaced
14:8ceb13af9cb6 15:076bcac8d059
23 mpglib/dct64_i386.o mpglib/decode_i386.o mpglib/tabinit.o 23 mpglib/dct64_i386.o mpglib/decode_i386.o mpglib/tabinit.o
24 endif 24 endif
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 i386/cpuid.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 endif 31 endif
32 32
33 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) 33 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
43 43
44 dsputil.o: dsputil.c dsputil.h 44 dsputil.o: dsputil.c dsputil.h
45 45
46 %.o: %.c 46 %.o: %.c
47 $(CC) $(CFLAGS) -c -o $@ $< 47 $(CC) $(CFLAGS) -c -o $@ $<
48
49 i386/cpuid.o: i386/cpuid.s
50 $(CC) -c -o $@ $<
48 51
49 %.o: %.s 52 %.o: %.s
50 nasm -f elf -o $@ $< 53 nasm -f elf -o $@ $<
51 54
52 # depend only used by mplayer now 55 # depend only used by mplayer now