diff --git a/configure/modules/RULES_CELL b/configure/modules/RULES_CELL
index ef7dc662ea89d0b914c12885c379afd0d5cd3e8c..585a7ed116f2f7154a13d96e6cc828096069f602 100644
--- a/configure/modules/RULES_CELL
+++ b/configure/modules/RULES_CELL
@@ -3,10 +3,12 @@
 ## Installs the module in a local directory $(E3_CELL_PATH)
 cellinstall: install_module versions fix_permissions
 
+## Remove the module from the local directory $(E3_CELL_PATH)
 celluninstall: conf
 	$(QUIET) $(SUDOBASH) '$(E3_MODULE_MAKE_CMDS) uninstall'
 	#$(SUDO) rm -rf $(E3_MODULES_PATH)
 
+## Print relevant environment variables for the local install
 cellvars: vars
 
 ifneq (,$(findstring cell,$(MAKECMDGOALS)))
diff --git a/configure/modules/RULES_E3 b/configure/modules/RULES_E3
index 34ff66c2facb3af35430928da2ac5bbd346bfcbb..ccd1f4cc0942890218af45e0a0ff3800bcbd95c9 100644
--- a/configure/modules/RULES_E3
+++ b/configure/modules/RULES_E3
@@ -51,12 +51,13 @@ debug: conf
 	$(QUIET) $(E3_MODULE_MAKE_CMDS) debug
 
 ## Clean, build, and install the current module
-rebuild: clean build install
+rebuild: clean build install 
 
 ## Deletes temporary build files
 clean: conf
 	$(QUIET) $(E3_MODULE_MAKE_CMDS) clean
 
+## Initializes, patches, builds, and installs.
 all: init patch rebuild
 
 # Copy $(E3_MODULE_MAKEFILE) into $(E3_MODULE_SRC_PATH)
diff --git a/configure/modules/RULES_VARS b/configure/modules/RULES_VARS
index 4534f829b478c9746475d67d7951540d82c29bd9..ded3c477161fbd973d12baa0c4b618cc087aed6b 100644
--- a/configure/modules/RULES_VARS
+++ b/configure/modules/RULES_VARS
@@ -33,8 +33,6 @@ GENERATED_DEP_FILE:=$(E3_MODULES_INSTALL_LOCATION_LIB)/$(EPICS_HOST_ARCH)/$(E3_M
 .PHONY: env vars header vers dep _dep1 _dep2
 
 ## Print relevant environment variables
-env: vars
-
 vars: header
 	$(foreach v, $(E3_MODULES_VARIABLES), $(info $(v) = $($(v)))) @#noop
 
@@ -54,6 +52,7 @@ else
 	$(QUIET)tree -L $(LEVEL) $(E3_MODULES_PATH)/$(E3_MODULE_NAME)
 endif
 
+## Displays dependency information, both configured and generated.
 dep: _dep2
 ifneq ("$(wildcard $(GENERATED_DEP_FILE))","")
 	$(QUIET)echo "> generated ..."