diff --git a/etc/codeTemplates/app/Make/options b/etc/codeTemplates/app/Make/options
index a3ae8da833177387e9eecf75b5e2675fc7b481f5..d27c95d033dd5d7b1995c8ff8dc406e35ca1f586 100644
--- a/etc/codeTemplates/app/Make/options
+++ b/etc/codeTemplates/app/Make/options
@@ -2,6 +2,6 @@ EXE_INC = \
     -I$(LIB_SRC)/finiteVolume/lnInclude \
     -I$(LIB_SRC)/meshTools/lnInclude
 
-LIB_LIBS = \
+EXE_LIBS = \
     -lfiniteVolume \
     -lmeshTools
diff --git a/etc/codeTemplates/app/app.C b/etc/codeTemplates/app/app.C
index fb4c8ea78e6ab88fadab921d13dadfed26d7c033..911ba7c7de322db58de994b07057bdcd5fd49609 100644
--- a/etc/codeTemplates/app/app.C
+++ b/etc/codeTemplates/app/app.C
@@ -43,7 +43,8 @@ int main(int argc, char *argv[])
         << "  ClockTime = " << runTime.elapsedClockTime() << " s"
         << nl << endl;
 
-    Info<< "\nEnd\n" << endl;
+    Info<< "End\n" << endl;
+
     return 0;
 }