diff --git a/skel/src/capp/TopSource.c b/skel/src/capp/TopSource.c index 2595542..15b96e9 100644 --- a/skel/src/capp/TopSource.c +++ b/skel/src/capp/TopSource.c @@ -4,7 +4,7 @@ * COPYING for more information / terms of license. */ -// Below are all the includes used throughout the library. +// Below are all the includes used throughout the application. /* options for text editors kate: replace-trailing-space-save true; space-indent true; tab-width 4; diff --git a/skel/src/capp/build.app b/skel/src/capp/build.app index 8792303..0acaf63 100644 --- a/skel/src/capp/build.app +++ b/skel/src/capp/build.app @@ -15,7 +15,7 @@ then MODIFIED=0 for test in ${MONOLITHIC_TESTS} ${HDR} ${SRC} do - if [ ${test} -nt ${LIB} ] + if [ ${test} -nt ${APP} ] then MODIFIED=1 break diff --git a/skel/src/capp/build.default b/skel/src/capp/build.default index f06bb1e..a737154 100644 --- a/skel/src/capp/build.default +++ b/skel/src/capp/build.default @@ -1 +1 @@ -source src/capp/build.lib +source src/capp/build.app diff --git a/skel/src/capp/build.install b/skel/src/capp/build.install index 3725062..6809ef3 100644 --- a/skel/src/capp/build.install +++ b/skel/src/capp/build.install @@ -1 +1 @@ -source src/capp/build.install-lib +source src/capp/build.install-app diff --git a/skel/src/capp/build.monolithic b/skel/src/capp/build.monolithic index 1588330..2271f17 100644 --- a/skel/src/capp/build.monolithic +++ b/skel/src/capp/build.monolithic @@ -7,7 +7,7 @@ then SRC="obj/app.c" MONOLITHIC_TESTS="src/capp/build.app src/capp/build.monolithic" - MONOLITHIC_SOURCE="$(echo src/lib/TopHeader.h) $(echo src/lib/TopSource.c)" + MONOLITHIC_SOURCE="$(echo src/capp/TopHeader.h) $(echo src/capp/TopSource.c)" make_monolithic ${SRC} C || return 1 APPC_MONOLITHIC=1 diff --git a/skel/src/cppapp/TopSource.cpp b/skel/src/cppapp/TopSource.cpp index a623c9f..9562eac 100644 --- a/skel/src/cppapp/TopSource.cpp +++ b/skel/src/cppapp/TopSource.cpp @@ -4,7 +4,7 @@ * COPYING for more information / terms of license. */ -// Below are all the includes used throughout the library. +// Below are all the includes used throughout the application. /* options for text editors kate: replace-trailing-space-save true; space-indent true; tab-width 4; diff --git a/skel/src/cppapp/build.app b/skel/src/cppapp/build.app index 360826b..55c5101 100644 --- a/skel/src/cppapp/build.app +++ b/skel/src/cppapp/build.app @@ -15,7 +15,7 @@ then MODIFIED=0 for test in ${MONOLITHIC_TESTS} ${HDR} ${SRC} do - if [ ${test} -nt ${LIB} ] + if [ ${test} -nt ${CPPAPP} ] then MODIFIED=1 break diff --git a/skel/src/cppapp/build.default b/skel/src/cppapp/build.default index 100c38b..56ed611 100644 --- a/skel/src/cppapp/build.default +++ b/skel/src/cppapp/build.default @@ -1 +1 @@ -source src/cppapp/build.lib +source src/cppapp/build.app diff --git a/skel/src/cppapp/build.install b/skel/src/cppapp/build.install index 3568d31..6906008 100644 --- a/skel/src/cppapp/build.install +++ b/skel/src/cppapp/build.install @@ -1 +1 @@ -source src/cppapp/build.install-lib +source src/cppapp/build.install-app diff --git a/skel/src/cppapp/build.monolithic b/skel/src/cppapp/build.monolithic index b744f15..61c9276 100644 --- a/skel/src/cppapp/build.monolithic +++ b/skel/src/cppapp/build.monolithic @@ -7,7 +7,7 @@ then SRC="obj/app.cpp" MONOLITHIC_TESTS="src/cppapp/build.app src/cppapp/build.monolithic" - MONOLITHIC_SOURCE="$(echo src/lib/TopHeader.h) $(echo src/lib/TopSource.cpp)" + MONOLITHIC_SOURCE="$(echo src/cppapp/TopHeader.h) $(echo src/cppapp/TopSource.cpp)" make_monolithic ${SRC} C || return 1 APPCPP_MONOLITHIC=1