CFLAGS=-Wall -g -Wno-format

all: find_stats

find_stats: find_stats.o i386-csum.o
	gcc *.o -o find_stats -lpcap

clean:
	rm -f *~ *.o find_stats
