view TOOLS/realcodecs/Makefile @ 19886:49ebd9c51a99

configure should fall back on -mcpu=pentium4 if -mcpu=prescott and -mcpu=nocona are not supported. patch by Sergey Svishchev, svs+mplayer grep ru
author diego
date Mon, 18 Sep 2006 16:24:16 +0000
parents 7f9b2b26e905
children 0fd1b699210c
line wrap: on
line source

SRCS = 14_4.c 28_8.c cook.c drv2.c drv3.c drv4.c ra.c rv30.c sipr.c
TARGETS = $(SRCS:.c=.so.6.0)

%.o: %.c
	cc -c $< -g

%.so.6.0: %.o
	ld -shared -o $@ $< -ldl -lc

all: $(TARGETS)

clean:
	rm -f *.so.6.0