view TOOLS/realcodecs/Makefile @ 21054:7d5035aafcc6

Fix obvious typo, although the exact effect is still unclear to me, see also bug #593. Patch by jose nazario [jose <at> monkey org].
author reimar
date Sun, 19 Nov 2006 17:41:31 +0000
parents 0fd1b699210c
children
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 $(TARGETS)