move all of the references to app/console to lib/console
diff --git a/project/surf-test/init.c b/project/surf-test/init.c
index 87be66d..5ef05b7 100644
--- a/project/surf-test/init.c
+++ b/project/surf-test/init.c
@@ -31,7 +31,7 @@
 
 #include <debug.h>
 #include <arch/arm.h>
-#include <app/console.h>
+#include <lib/console.h>
 #include <app/tests.h>
 
 extern int string_tests(void);
diff --git a/project/surf-test/rules.mk b/project/surf-test/rules.mk
index 59b2f9b..a2a9171 100644
--- a/project/surf-test/rules.mk
+++ b/project/surf-test/rules.mk
@@ -10,7 +10,7 @@
 
 MODULES += \
 	app/tests \
-	app/console
+	lib/console
 
 OBJS += \
 	$(LOCAL_DIR)/init.o