diff --git a/bash_profile.d/00_base.sh b/bash_profile.d/00_base.sh
index 26fe6e5..db47346 100644
--- a/bash_profile.d/00_base.sh
+++ b/bash_profile.d/00_base.sh
@@ -41,11 +41,6 @@ export HISTSIZE=100000
 
 alias sp='source $HOME/.bash_profile'
 
-alias m='make'
-alias mc='m clean'
-alias mi='m install'
-alias md='m develop'
-
 # grep
 alias grep='grep --color=auto'
 
diff --git a/bash_profile.d/convenience.sh b/bash_profile.d/convenience.sh
index 8c63011..45ffa0d 100644
--- a/bash_profile.d/convenience.sh
+++ b/bash_profile.d/convenience.sh
@@ -1,5 +1,11 @@
 #!/bin/bash
 
+echo "lazyass MAKE aliases..."
+alias m='make'
+alias mc='m clean'
+alias mi='m install'
+alias md='m develop'
+
 function heck_rm_o_and_d_files_recurse() {
   rm -v $(find . | grep -E '\.o$|\.d$')
 }