# $Id: Makefile,v 1.2 2006/09/16 12:17:17 maxim Exp $
#

include ../Rules.make

LIB = libcommon.a

OBJS	= misc.o signames.o str.o pairs.o ip_ranges.o ptrinfo.o
HEADERS = misc.h signames.h str.h pairs.h ip_ranges.h ptrinfo.h settings.h ../configure.h

all: $(LIB)

$(LIB): $(OBJS)
	rm -f $@
	ar cr $@ $(OBJS)
	ranlib $@

$(OBJS): $(HEADERS) Makefile ../Rules.make

install: all

clean:
	rm -f $(LIB) *.o *~
