diff --git a/README.md b/README.md
index 7344ad4..6f4f838 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,28 @@
 
 ## Building The Bootstrap Image
 
+1. Log into your build machine, VM, or docker image.
+
+2. Make sure you have write permission to the installation directory.
+
+3. Make sure the native OS compiler tools are installed.
+
+4. Get the linuxbrew image:
+
+     `make getbrew`
+
+5. Build the bootstrap image:
+
+     `make bootstrap-build`
+
+6. Build a release tarball and export it:
+
+     `make bootstrap-release`
+
+7. Cleanup:
+
+     `make clean`
+
 
 ## Building The Full Tools Set
 
diff --git a/makefile b/makefile
index 6e3b875..0747537 100644
--- a/makefile
+++ b/makefile
@@ -33,7 +33,7 @@
 	${BREW} install ${MYTOOLS}
 
 full-release: tidyup
-	cd ${INSTALLDIR} && mv -v ${TOOLS} ${TOOLS}-full-${DATESTAMP}
+	cd ${INSTALLDIR} && mv -v ${TOOLS} ${TOOLS}-${DATESTAMP}
 	cd ${INSTALLDIR} && tar -czvf ${EXPORTDIR}/${TOOLS}-${DATESTAMP}.tar.gz ${TOOLS}-${DATESTAMP}
 
 tidyup:
@@ -43,4 +43,4 @@
 	-${BREW} doctor
 
 clean:
-	rm -vrf ${TOOLSDIR}
+	cd ${INSTALLDIR} && rm -vrf ${TOOLS} ${TOOLS}-bootstrap-${DATESTAMP} ${TOOLS}-${DATESTAMP}