# $Id: Makefile,v 1.1.1.1 2002/05/14 02:03:11 wyy Exp $ 
#
# Inter.net Philippines Patches to Flow-tools
#
# Miguel A. Paraz <map@internet.org.ph>
# Inter.net Philippines 
# 
# William Emmanuel S. YU <william.s.yu@ieee.org>
# Ateneo de Manila University, Philippines
#
# Requires Flow-Tools-0.57
# Copyright (c) 2001 Mark Fullmer and The Ohio State University
# All rights reserved.
#

include ../Make.inc

# compile time flags
OBJ=patricia.o
LIB=libpatricia.a

default: libpatricia

libpatricia: $(OBJ)
	$(AR) $(LIB) $(OBJ)
	$(RANLIB) $(LIB)
	@echo "Created $(LIB) in libparport"	

clean:
	$(RM) -f *.o core

distclean:
	$(RM) -f *.o *.a *.so core
