ChangeLog, Makefile.in, configure.in:
  configure.in (rmakefile): Added (optional) private directory for resize2fs.
  Makefile.in: Change recursive descent rules to check to see if a
  	directory exists before trying to make it.
Many files:
  Initial checkin of work done to date.

diff --git a/configure.in b/configure.in
index d7fcebf..f83c5a4 100644
--- a/configure.in
+++ b/configure.in
@@ -504,7 +504,11 @@
 test -d lib || mkdir lib
 test -d include || mkdir include
 test -d include/linux || mkdir include/linux
+rmakefile=
+if test -d ${srcdir}/resize ; then
+   rmakefile=resize/Makefile
+fi
 AC_OUTPUT(MCONFIG lib/substitute_sh Makefile lib/et/Makefile 
 	lib/ss/Makefile lib/ext2fs/Makefile lib/e2p/Makefile lib/uuid/Makefile
 	misc/Makefile e2fsck/Makefile debugfs/Makefile tests/Makefile 
-	tests/progs/Makefile doc/Makefile)
+	tests/progs/Makefile $rmakefile doc/Makefile)