Arpon's install:
================

1) Porting avaible;
2) General options;
3) Static linking;

In order to use ArpON you need the following 
libraries installed in your system:

	- Pthread
	- Libpcap
	- LibNet 1.1
	- LibDNet

1) Portings lists avaible:
==========================
	$ make

	For Mac OS X users:
	===================

	Compile with: 
	$ make osx

	For FreeBSD users:
	==================

	Compile with:
	$ make freebsd

	For NetBSD users:
	=================

	Compile with:
	$ make netbsd

	For OpenBSD users:
	==================

	Compile with:
	$ make openbsd

	For Linux users:
	================

	Compile with:
	$ make linux

	For Debian users:
	=================
	
	Compile with:
	$ make debian

	For Gentoo users:
	=================

	Compile with:
	$ make gentoo

2) General options:
===================
	Clean with:
	$ make clean

	Install with:
	# make install

	Uninstall with
	# make uninstall

	Use with:
	# ./arpon
	Or
	# arpon

3) Static linking:
==================

If you have problems with make, search
the static linking libraries in:

	- /usr/lib
	- /usr/local/lib

Later, search:

	- libpcap.a
	- libnet.a
	- libdnet.a

Example:

	- /usr/lib/libpcap.a
	- /usr/lib/libnet.a
	- /usr/local/lib/libdnet.a

Later, open arpon's makefile and modify
your os gcc line, example:

From:

gcc $(CFLAGS) $(LDFLAGS) $(LIBS_LINUX) -DLINUX -o $(EXEC) $(SOURCE)

To:

gcc $(CFLAGS) $(LDFLAGS) $(LIBS_LINUX) -DLINUX -o $(EXEC) $(SOURCE) /usr/lib/libpcap.a /usr/lib/libnet.a /usr/local/lib/libdnet.a

Save and exit, go:

$ make
$ sudo make install


===
EOF
===
