move app/console to lib/console
diff --git a/app/console/include/app/console.h b/include/lib/console.h
similarity index 97%
rename from app/console/include/app/console.h
rename to include/lib/console.h
index 18c711e..6641542 100644
--- a/app/console/include/app/console.h
+++ b/include/lib/console.h
@@ -20,8 +20,8 @@
  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
-#ifndef __APP_CONSOLE_H
-#define __APP_CONSOLE_H
+#ifndef __LIB_CONSOLE_H
+#define __LIB_CONSOLE_H
 
 #include <sys/types.h>
 #include <compiler.h>
diff --git a/app/console/console.c b/lib/console/console.c
similarity index 99%
rename from app/console/console.c
rename to lib/console/console.c
index 7f450b5..5782530 100644
--- a/app/console/console.c
+++ b/lib/console/console.c
@@ -20,12 +20,12 @@
  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
-#include <app/console.h>
 #include <debug.h>
 #include <string.h>
 #include <ctype.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include <lib/console.h>
 
 static cmd_block *command_list = NULL;
 
diff --git a/app/console/rules.mk b/lib/console/rules.mk
similarity index 100%
rename from app/console/rules.mk
rename to lib/console/rules.mk