# $Id: Makefile,v 1.5 2002/07/15 12:19:20 roart Exp $
# $Makefile$

all: libqueue.a

libqueue.a: queue.o
	ar cr $@ queue.o
	ranlib $@ 

queue.o: queue.c
	cc -c queue.c -I.
