#
# $Id: Makefile,v 1.1.1.1 2001/07/19 11:57:02 chris_schneider Exp $
#
# $Log: Makefile,v $
# Revision 1.1.1.1  2001/07/19 11:57:02  chris_schneider
# Initial checkin
#
#

LIBNET=../Libnet-1.0.2a

all:	arprelease

arprelease:	arprelease.c $(LIBNET)/lib/libnet.a
	gcc -O -Wall `$(LIBNET)/libnet-config --defines` -I$(LIBNET)/include arprelease.c -o arprelease -L$(LIBNET)/lib `$(LIBNET)/libnet-config --libs` 

clean:	
	rm -f arprelease
