view TOOLS/realcodecs/Makefile @ 21800:3363189ec02c

don't fatal if saving vesa state failed (this always fails on qemu, with this patch vesa now works under qemu)
author ben
date Thu, 04 Jan 2007 16:07:42 +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)