# /emx/bsd/libc/makefile

CC=	gcc -O
CFLAGS= -I.

.c.o:
	$(CC) -c $(CFLAGS) $<
default: libbsd.a

libbsd.a: random.o
	-del $@
	ar r $@ *.o
	ar s $@
