view TOOLS/realcodecs/Makefile @ 22740:9128aa26244a

Add return 0 to fix the following warning: bmovl-test.c:118: warning: control reaches end of non-void function
author diego
date Tue, 20 Mar 2007 01:15:28 +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)