to make this program, follow this example

Say we want to wrap and log the echo program.  
build the program with these commands,
	./configure --prog=/bin/echo
	make
	su
	make install

doing a ps -ef will show echo running.

You can't build a wrapper in the directory where the original lives.

After configuring, read the makefile to see how this works.  

Try not to accidentally wrap a wrapper, or you'll get an infinite loop.
