mkproject: A program that makes projects skeletons.

`Make project' is a bash script that makes project skeletons. It automatizes the task of start a new project with the information provided from the command line. The package created by default is a `hello world' project of the selected skeleton that uses the autotools to be managed.

Examples:

1. a c project:
	$mkproject --skeleton=c --tarname=test --package="A test" \
		  --description="A test package for mkproject" \
		  --author="Someone" \
		  --bugreport=noemail@network.org

 now try it,
	$cd test && ./configure && make && src/test

2. a bash project:
	$mkproject -s bash -t at --p "Another test" \
		  -d "Another test for mkproject" \
		  -a "The same one" -b stillnoemail@network.org

	$cd at && ./configure && make && src/at &&  make distcheck

3. minimal options:
	$mkproject -s c -t test
