#
# Build the liblists library.
#
# $Header: /e/ossp/cvs/ossp-pkg/petidomo/liblists/Makefile,v 1.4 2000/12/14 15:14:36 simons Exp $
#

CC 		= gcc
AR 		= ar
RANLIB		= ranlib

CFLAGS		= -Wall -pedantic -O3
CPPFLAGS	=
LDFLAGS		=

.SUFFIXES:
.SUFFIXES:	.c .o

.c.o:
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<

liblists.a:	lists.o
	$(AR) cr liblists.a lists.o
	$(RANLIB) liblists.a

realclean distclean clean::
	rm -f liblists.a lists.o
