view TOOLS/realcodecs/Makefile @ 20966:dc1a02e98cb6

clarify syncpoint placement recommanditions (note i would also like to add a "there MUST be 1 syncpoint per second" rule)
author michael
date Fri, 17 Nov 2006 13:32:45 +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)